pub struct CommandExistsCall {
pub command: String,
pub found: bool,
pub duration: Duration,
pub cached: bool,
}Expand description
A recorded command_exists call with result and duration.
Fields§
§command: String§found: bool§duration: Duration§cached: boolWhether this result came from the precache hint layer.
Trait Implementations§
Source§impl Clone for CommandExistsCall
impl Clone for CommandExistsCall
Source§fn clone(&self) -> CommandExistsCall
fn clone(&self) -> CommandExistsCall
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 CommandExistsCall
impl RefUnwindSafe for CommandExistsCall
impl Send for CommandExistsCall
impl Sync for CommandExistsCall
impl Unpin for CommandExistsCall
impl UnsafeUnpin for CommandExistsCall
impl UnwindSafe for CommandExistsCall
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