pub struct InvocationList {
pub invocations: Option<Vec<InvocationView>>,
}Fields§
§invocations: Option<Vec<InvocationView>>Invocations is one row per past run, newest first.
Implementations§
Source§impl InvocationList
impl InvocationList
pub fn new() -> InvocationList
Trait Implementations§
Source§impl Clone for InvocationList
impl Clone for InvocationList
Source§fn clone(&self) -> InvocationList
fn clone(&self) -> InvocationList
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 moreSource§impl Debug for InvocationList
impl Debug for InvocationList
Source§impl Default for InvocationList
impl Default for InvocationList
Source§fn default() -> InvocationList
fn default() -> InvocationList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvocationList
impl<'de> Deserialize<'de> for InvocationList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InvocationList
impl PartialEq for InvocationList
Source§impl Serialize for InvocationList
impl Serialize for InvocationList
impl StructuralPartialEq for InvocationList
Auto Trait Implementations§
impl Freeze for InvocationList
impl RefUnwindSafe for InvocationList
impl Send for InvocationList
impl Sync for InvocationList
impl Unpin for InvocationList
impl UnsafeUnpin for InvocationList
impl UnwindSafe for InvocationList
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