pub struct InvocationRecord {
pub invocation_id: String,
pub invocation_type: String,
pub payload: Value,
pub response: Value,
pub status_code: u16,
pub timestamp: String,
}Expand description
Stored for debugging and the admin console — fields read externally.
Fields§
§invocation_id: String§invocation_type: String§payload: Value§response: Value§status_code: u16§timestamp: StringTrait Implementations§
Source§impl Clone for InvocationRecord
impl Clone for InvocationRecord
Source§fn clone(&self) -> InvocationRecord
fn clone(&self) -> InvocationRecord
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 InvocationRecord
impl RefUnwindSafe for InvocationRecord
impl Send for InvocationRecord
impl Sync for InvocationRecord
impl Unpin for InvocationRecord
impl UnsafeUnpin for InvocationRecord
impl UnwindSafe for InvocationRecord
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