pub struct EventsResult {
pub output: String,
pub events: Vec<ComposeEvent>,
}
Expand description
Result from events command
Fields§
§output: String
Raw output from the command
events: Vec<ComposeEvent>
Parsed events (if JSON format)
Trait Implementations§
Source§impl Clone for EventsResult
impl Clone for EventsResult
Source§fn clone(&self) -> EventsResult
fn clone(&self) -> EventsResult
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 moreAuto Trait Implementations§
impl Freeze for EventsResult
impl RefUnwindSafe for EventsResult
impl Send for EventsResult
impl Sync for EventsResult
impl Unpin for EventsResult
impl UnwindSafe for EventsResult
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