pub struct CapTraceEntry {
pub timestamp: u64,
pub operation: String,
pub actor: String,
pub resource: Cid,
pub capability: Cap,
pub success: bool,
pub details: String,
}Fields§
§timestamp: u64§operation: String§actor: String§resource: Cid§capability: Cap§success: bool§details: StringTrait Implementations§
Source§impl Clone for CapTraceEntry
impl Clone for CapTraceEntry
Source§fn clone(&self) -> CapTraceEntry
fn clone(&self) -> CapTraceEntry
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 CapTraceEntry
impl Debug for CapTraceEntry
Source§impl<'de> Deserialize<'de> for CapTraceEntry
impl<'de> Deserialize<'de> for CapTraceEntry
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
Auto Trait Implementations§
impl Freeze for CapTraceEntry
impl RefUnwindSafe for CapTraceEntry
impl Send for CapTraceEntry
impl Sync for CapTraceEntry
impl Unpin for CapTraceEntry
impl UnsafeUnpin for CapTraceEntry
impl UnwindSafe for CapTraceEntry
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