pub struct DaemonIdentityV2 {
pub version: u16,
pub state: DaemonState,
pub generation: Evidence<String>,
pub request_id: Evidence<String>,
pub parent_request_id: Evidence<String>,
pub ready_age_ns: Evidence<u64>,
}Expand description
Daemon mode and request linkage for one run.
Fields§
§version: u16§state: DaemonState§generation: Evidence<String>§request_id: Evidence<String>§parent_request_id: Evidence<String>§ready_age_ns: Evidence<u64>Trait Implementations§
Source§impl Clone for DaemonIdentityV2
impl Clone for DaemonIdentityV2
Source§fn clone(&self) -> DaemonIdentityV2
fn clone(&self) -> DaemonIdentityV2
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 DaemonIdentityV2
impl Debug for DaemonIdentityV2
Source§impl<'de> Deserialize<'de> for DaemonIdentityV2
impl<'de> Deserialize<'de> for DaemonIdentityV2
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 DaemonIdentityV2
impl PartialEq for DaemonIdentityV2
Source§impl Serialize for DaemonIdentityV2
impl Serialize for DaemonIdentityV2
impl StructuralPartialEq for DaemonIdentityV2
Auto Trait Implementations§
impl Freeze for DaemonIdentityV2
impl RefUnwindSafe for DaemonIdentityV2
impl Send for DaemonIdentityV2
impl Sync for DaemonIdentityV2
impl Unpin for DaemonIdentityV2
impl UnsafeUnpin for DaemonIdentityV2
impl UnwindSafe for DaemonIdentityV2
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