pub struct ChannelInfo {
pub channel: Channel,
pub medium_type: ChannelMediumType,
pub protocol_type: ChannelProtocolType,
pub session_support: ChannelSessionSupport,
pub active_sessions: u8,
pub vendor_id: u32,
pub aux_info: AuxChannelInfo,
}Expand description
Channel info returned by the BMC.
Fields§
§channel: Channel§medium_type: ChannelMediumType§protocol_type: ChannelProtocolType§session_support: ChannelSessionSupport§active_sessions: u8§vendor_id: u32§aux_info: AuxChannelInfoImplementations§
Trait Implementations§
Source§impl Clone for ChannelInfo
impl Clone for ChannelInfo
Source§fn clone(&self) -> ChannelInfo
fn clone(&self) -> ChannelInfo
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 moreSource§impl Debug for ChannelInfo
impl Debug for ChannelInfo
Source§impl PartialEq for ChannelInfo
impl PartialEq for ChannelInfo
impl StructuralPartialEq for ChannelInfo
Auto Trait Implementations§
impl Freeze for ChannelInfo
impl RefUnwindSafe for ChannelInfo
impl Send for ChannelInfo
impl Sync for ChannelInfo
impl Unpin for ChannelInfo
impl UnsafeUnpin for ChannelInfo
impl UnwindSafe for ChannelInfo
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