pub enum TargetTypeProto {
TARGET_UNSPECIFIED = 0,
TARGET_OS_WINDOWS = 1,
TARGET_OS_MAC = 2,
TARGET_OS_LINUX = 3,
TARGET_OS_ANDROID = 4,
TARGET_OS_IOS = 5,
}Variants§
TARGET_UNSPECIFIED = 0
TARGET_OS_WINDOWS = 1
TARGET_OS_MAC = 2
TARGET_OS_LINUX = 3
TARGET_OS_ANDROID = 4
TARGET_OS_IOS = 5
Trait Implementations§
Source§impl Clone for TargetTypeProto
impl Clone for TargetTypeProto
Source§fn clone(&self) -> TargetTypeProto
fn clone(&self) -> TargetTypeProto
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 TargetTypeProto
impl Debug for TargetTypeProto
Source§impl Default for TargetTypeProto
impl Default for TargetTypeProto
Source§impl Enum for TargetTypeProto
impl Enum for TargetTypeProto
Source§const VALUES: &'static [TargetTypeProto]
const VALUES: &'static [TargetTypeProto]
All enum values for enum type.
Source§impl EnumFull for TargetTypeProto
impl EnumFull for TargetTypeProto
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
Source§impl Hash for TargetTypeProto
impl Hash for TargetTypeProto
Source§impl PartialEq for TargetTypeProto
impl PartialEq for TargetTypeProto
impl Copy for TargetTypeProto
impl Eq for TargetTypeProto
impl StructuralPartialEq for TargetTypeProto
Auto Trait Implementations§
impl Freeze for TargetTypeProto
impl RefUnwindSafe for TargetTypeProto
impl Send for TargetTypeProto
impl Sync for TargetTypeProto
impl Unpin for TargetTypeProto
impl UnwindSafe for TargetTypeProto
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