pub struct InterfaceConfig {
pub variant: InterfaceVariant,
pub mode: u8,
pub ifac: Option<IfacConfig>,
}Expand description
Interface configuration variant with its mode.
Fields§
§variant: InterfaceVariant§mode: u8Interface mode (MODE_FULL, MODE_ACCESS_POINT, etc.)
ifac: Option<IfacConfig>IFAC (Interface Access Code) configuration, if enabled.
Auto Trait Implementations§
impl Freeze for InterfaceConfig
impl RefUnwindSafe for InterfaceConfig
impl Send for InterfaceConfig
impl Sync for InterfaceConfig
impl Unpin for InterfaceConfig
impl UnwindSafe for InterfaceConfig
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