#[repr(u32)]pub enum PlatformFamily {
Unknown = 0,
Apple = 1,
Windows = 2,
Linux = 3,
}Variants§
Trait Implementations§
Source§impl Clone for PlatformFamily
impl Clone for PlatformFamily
Source§fn clone(&self) -> PlatformFamily
fn clone(&self) -> PlatformFamily
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PlatformFamily
Source§impl Debug for PlatformFamily
impl Debug for PlatformFamily
impl Eq for PlatformFamily
Source§impl PartialEq for PlatformFamily
impl PartialEq for PlatformFamily
impl StructuralPartialEq for PlatformFamily
Auto Trait Implementations§
impl Freeze for PlatformFamily
impl RefUnwindSafe for PlatformFamily
impl Send for PlatformFamily
impl Sync for PlatformFamily
impl Unpin for PlatformFamily
impl UnsafeUnpin for PlatformFamily
impl UnwindSafe for PlatformFamily
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