pub struct LiveGrokMultiSessionReport {
pub port: u16,
pub session_a: LiveGrokSessionOutcome,
pub session_b: LiveGrokSessionOutcome,
pub load_a_ok: Option<bool>,
pub summary_path: PathBuf,
}Expand description
Report from run_live_grok_multi_session.
Fields§
§port: u16Serve port.
session_a: LiveGrokSessionOutcomeSession A outcome.
session_b: LiveGrokSessionOutcomeSession B outcome.
load_a_ok: Option<bool>Explicit load of A’s id succeeded with matching id (when requested).
summary_path: PathBufWritten summary path.
Trait Implementations§
Source§impl Clone for LiveGrokMultiSessionReport
impl Clone for LiveGrokMultiSessionReport
Source§fn clone(&self) -> LiveGrokMultiSessionReport
fn clone(&self) -> LiveGrokMultiSessionReport
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 moreAuto Trait Implementations§
impl Freeze for LiveGrokMultiSessionReport
impl RefUnwindSafe for LiveGrokMultiSessionReport
impl Send for LiveGrokMultiSessionReport
impl Sync for LiveGrokMultiSessionReport
impl Unpin for LiveGrokMultiSessionReport
impl UnsafeUnpin for LiveGrokMultiSessionReport
impl UnwindSafe for LiveGrokMultiSessionReport
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