pub struct ProfileEnvelopeV2 {
pub version: u16,
pub schema: String,
pub schema_version: SchemaVersionV2,
pub event_schema_version: u16,
pub metric_registry_version: u16,
pub producer: ProducerIdentityV2,
pub integrity: Evidence<ArtifactIntegrityV2>,
}Expand description
Self-describing envelope for a v2 causal profile.
Fields§
§version: u16§schema: String§schema_version: SchemaVersionV2§event_schema_version: u16§metric_registry_version: u16§producer: ProducerIdentityV2§integrity: Evidence<ArtifactIntegrityV2>Trait Implementations§
Source§impl Clone for ProfileEnvelopeV2
impl Clone for ProfileEnvelopeV2
Source§fn clone(&self) -> ProfileEnvelopeV2
fn clone(&self) -> ProfileEnvelopeV2
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 ProfileEnvelopeV2
impl Debug for ProfileEnvelopeV2
Source§impl<'de> Deserialize<'de> for ProfileEnvelopeV2
impl<'de> Deserialize<'de> for ProfileEnvelopeV2
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 ProfileEnvelopeV2
impl PartialEq for ProfileEnvelopeV2
Source§impl Serialize for ProfileEnvelopeV2
impl Serialize for ProfileEnvelopeV2
impl StructuralPartialEq for ProfileEnvelopeV2
Auto Trait Implementations§
impl Freeze for ProfileEnvelopeV2
impl RefUnwindSafe for ProfileEnvelopeV2
impl Send for ProfileEnvelopeV2
impl Sync for ProfileEnvelopeV2
impl Unpin for ProfileEnvelopeV2
impl UnsafeUnpin for ProfileEnvelopeV2
impl UnwindSafe for ProfileEnvelopeV2
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