pub struct ExpectedIdentity {
pub analysis_id: Option<String>,
pub build_id: Option<String>,
}Expand description
Expected analysis/build identity supplied by an importer when correlating a trace.
Only fields that are Some on both this value and the trace metadata are compared.
Omitted optional identity on either side is compatible (backward compatible).
Fields§
§analysis_id: Option<String>§build_id: Option<String>Trait Implementations§
Source§impl Clone for ExpectedIdentity
impl Clone for ExpectedIdentity
Source§fn clone(&self) -> ExpectedIdentity
fn clone(&self) -> ExpectedIdentity
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 ExpectedIdentity
impl Debug for ExpectedIdentity
Source§impl Default for ExpectedIdentity
impl Default for ExpectedIdentity
Source§fn default() -> ExpectedIdentity
fn default() -> ExpectedIdentity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExpectedIdentity
impl<'de> Deserialize<'de> for ExpectedIdentity
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
impl Eq for ExpectedIdentity
Source§impl PartialEq for ExpectedIdentity
impl PartialEq for ExpectedIdentity
Source§impl Serialize for ExpectedIdentity
impl Serialize for ExpectedIdentity
impl StructuralPartialEq for ExpectedIdentity
Auto Trait Implementations§
impl Freeze for ExpectedIdentity
impl RefUnwindSafe for ExpectedIdentity
impl Send for ExpectedIdentity
impl Sync for ExpectedIdentity
impl Unpin for ExpectedIdentity
impl UnsafeUnpin for ExpectedIdentity
impl UnwindSafe for ExpectedIdentity
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