pub struct SessionStatus {
pub session_name: String,
pub active_fault_preset: Option<String>,
pub active_response_profile: Option<String>,
pub active_behavior_set: Option<String>,
pub trace_enabled: bool,
pub trace_entries: usize,
pub services: usize,
pub devices: usize,
}Expand description
Human-oriented session status for CLI output.
Fields§
§session_name: String§active_fault_preset: Option<String>§active_response_profile: Option<String>§active_behavior_set: Option<String>§trace_enabled: bool§trace_entries: usize§services: usize§devices: usizeTrait Implementations§
Source§impl Clone for SessionStatus
impl Clone for SessionStatus
Source§fn clone(&self) -> SessionStatus
fn clone(&self) -> SessionStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 SessionStatus
impl Debug for SessionStatus
Auto Trait Implementations§
impl Freeze for SessionStatus
impl RefUnwindSafe for SessionStatus
impl Send for SessionStatus
impl Sync for SessionStatus
impl Unpin for SessionStatus
impl UnsafeUnpin for SessionStatus
impl UnwindSafe for SessionStatus
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