[][src]Struct racetrack::tracker::CallInfo

pub struct CallInfo {
    pub arguments: Option<Box<dyn Any + Send + Sync>>,
    pub returned: Option<Box<dyn Any + Send + Sync>>,
}

Stores call info for the method call. This is usually constructed via the proc-macro, but can be done manually.

Fields

arguments: Option<Box<dyn Any + Send + Sync>>

The boxed arguments as a tuple

returned: Option<Box<dyn Any + Send + Sync>>

The boxed return value

Trait Implementations

impl Debug for CallInfo[src]

Auto Trait Implementations

impl !RefUnwindSafe for CallInfo

impl Send for CallInfo

impl Sync for CallInfo

impl Unpin for CallInfo

impl !UnwindSafe for CallInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.