pub enum ChannelAccessType {
NonVolatile,
Volatile,
}Expand description
Whether to get non-volatile or volatile channel access settings.
Variants§
NonVolatile
Get non-volatile (persistent) settings stored in BMC.
Volatile
Get volatile (currently active) settings.
Trait Implementations§
Source§impl Clone for ChannelAccessType
impl Clone for ChannelAccessType
Source§fn clone(&self) -> ChannelAccessType
fn clone(&self) -> ChannelAccessType
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 ChannelAccessType
Source§impl Debug for ChannelAccessType
impl Debug for ChannelAccessType
Source§impl PartialEq for ChannelAccessType
impl PartialEq for ChannelAccessType
impl StructuralPartialEq for ChannelAccessType
Auto Trait Implementations§
impl Freeze for ChannelAccessType
impl RefUnwindSafe for ChannelAccessType
impl Send for ChannelAccessType
impl Sync for ChannelAccessType
impl Unpin for ChannelAccessType
impl UnsafeUnpin for ChannelAccessType
impl UnwindSafe for ChannelAccessType
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