pub enum InterfaceTypeEnum {
Unspecified,
WiFi,
Ethernet,
Cellular,
Thread,
Unknown(u8),
}Expand description
InterfaceTypeEnum (enum8).
Variants§
Unspecified
Unspecified = 0.
WiFi
WiFi = 1.
Ethernet
Ethernet = 2.
Cellular
Cellular = 3.
Thread
Thread = 4.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for InterfaceTypeEnum
impl Clone for InterfaceTypeEnum
Source§fn clone(&self) -> InterfaceTypeEnum
fn clone(&self) -> InterfaceTypeEnum
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 InterfaceTypeEnum
Source§impl Debug for InterfaceTypeEnum
impl Debug for InterfaceTypeEnum
impl Eq for InterfaceTypeEnum
Source§impl PartialEq for InterfaceTypeEnum
impl PartialEq for InterfaceTypeEnum
impl StructuralPartialEq for InterfaceTypeEnum
Auto Trait Implementations§
impl Freeze for InterfaceTypeEnum
impl RefUnwindSafe for InterfaceTypeEnum
impl Send for InterfaceTypeEnum
impl Sync for InterfaceTypeEnum
impl Unpin for InterfaceTypeEnum
impl UnsafeUnpin for InterfaceTypeEnum
impl UnwindSafe for InterfaceTypeEnum
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