pub struct SessionSummary {
pub name: String,
pub transport: String,
pub devices: Vec<String>,
pub preset: Option<String>,
pub active_fault_preset: Option<String>,
pub active_response_profile: Option<String>,
pub active_behavior_set: Option<String>,
}Expand description
Inspection summary for a single named session.
Fields§
§name: String§transport: String§devices: Vec<String>§preset: Option<String>§active_fault_preset: Option<String>§active_response_profile: Option<String>§active_behavior_set: Option<String>Trait Implementations§
Source§impl Clone for SessionSummary
impl Clone for SessionSummary
Source§fn clone(&self) -> SessionSummary
fn clone(&self) -> SessionSummary
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 SessionSummary
impl Debug for SessionSummary
Auto Trait Implementations§
impl Freeze for SessionSummary
impl RefUnwindSafe for SessionSummary
impl Send for SessionSummary
impl Sync for SessionSummary
impl Unpin for SessionSummary
impl UnsafeUnpin for SessionSummary
impl UnwindSafe for SessionSummary
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