pub enum Camera {
Orthogonal(OrthogonalCamera),
Perspective(PerspectiveCamera),
}
Expand description
Enum of cameras.
Variants§
Orthogonal(OrthogonalCamera)
Perspective(PerspectiveCamera)
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Camera
impl Send for Camera
impl Sync for Camera
impl Unpin for Camera
impl UnwindSafe for Camera
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more