pub enum CameraType {
Perspective,
Orthographic,
}Variants§
Implementations§
Source§impl CameraType
impl CameraType
pub const VALID_CAMERA_TYPES: &[&str]
Trait Implementations§
Source§impl Clone for CameraType
impl Clone for CameraType
Source§fn clone(&self) -> CameraType
fn clone(&self) -> CameraType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CameraType
impl Debug for CameraType
Source§impl From<CameraType> for &str
impl From<CameraType> for &str
Source§fn from(value: CameraType) -> Self
fn from(value: CameraType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CameraType
impl PartialEq for CameraType
Source§impl Serialize for CameraType
impl Serialize for CameraType
Source§impl TryFrom<&str> for CameraType
impl TryFrom<&str> for CameraType
impl Copy for CameraType
impl Eq for CameraType
impl StructuralPartialEq for CameraType
Auto Trait Implementations§
impl Freeze for CameraType
impl RefUnwindSafe for CameraType
impl Send for CameraType
impl Sync for CameraType
impl Unpin for CameraType
impl UnwindSafe for CameraType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.