pub struct ProtocolProfileEvidence {
pub protocol: String,
pub profile_id: String,
pub capability_id: Option<String>,
pub lane: Option<String>,
pub coverage_status: Option<String>,
}Expand description
Protocol profile identity carried through from Unified Readiness and Trials.
Fields§
§protocol: String§profile_id: String§capability_id: Option<String>§lane: Option<String>§coverage_status: Option<String>Implementations§
Source§impl ProtocolProfileEvidence
impl ProtocolProfileEvidence
pub fn new(protocol: impl Into<String>, profile_id: impl Into<String>) -> Self
pub fn with_capability_id(self, capability_id: impl Into<String>) -> Self
pub fn with_lane(self, lane: impl Into<String>) -> Self
pub fn with_coverage_status(self, coverage_status: impl Into<String>) -> Self
Trait Implementations§
Source§impl Clone for ProtocolProfileEvidence
impl Clone for ProtocolProfileEvidence
Source§fn clone(&self) -> ProtocolProfileEvidence
fn clone(&self) -> ProtocolProfileEvidence
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 ProtocolProfileEvidence
impl Debug for ProtocolProfileEvidence
Source§impl<'de> Deserialize<'de> for ProtocolProfileEvidence
impl<'de> Deserialize<'de> for ProtocolProfileEvidence
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 ProtocolProfileEvidence
impl PartialEq for ProtocolProfileEvidence
Source§fn eq(&self, other: &ProtocolProfileEvidence) -> bool
fn eq(&self, other: &ProtocolProfileEvidence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProtocolProfileEvidence
impl Serialize for ProtocolProfileEvidence
impl StructuralPartialEq for ProtocolProfileEvidence
Auto Trait Implementations§
impl Freeze for ProtocolProfileEvidence
impl RefUnwindSafe for ProtocolProfileEvidence
impl Send for ProtocolProfileEvidence
impl Sync for ProtocolProfileEvidence
impl Unpin for ProtocolProfileEvidence
impl UnsafeUnpin for ProtocolProfileEvidence
impl UnwindSafe for ProtocolProfileEvidence
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