pub enum Channel {
Primary,
Numbered(ChannelNumber),
System,
Current,
}Expand description
The channel on which an IPMI module or sensor is present.
Variants§
Primary
The primary channel.
Numbered(ChannelNumber)
A numbered channel.
System
The system channel.
Current
The current channel, for some definition of current.
Implementations§
Trait Implementations§
impl Copy for Channel
impl StructuralPartialEq for Channel
Auto Trait Implementations§
impl Freeze for Channel
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
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