pub struct IdentityInteropQualificationCase {
pub id: String,
pub name: String,
pub requirement_ids: Vec<String>,
pub scenario: IdentityInteropScenarioKind,
pub expected_outcome: IdentityQualificationOutcome,
pub observed_outcome: IdentityQualificationOutcome,
pub notes: Vec<String>,
}Fields§
§id: String§name: String§requirement_ids: Vec<String>§scenario: IdentityInteropScenarioKind§expected_outcome: IdentityQualificationOutcome§observed_outcome: IdentityQualificationOutcome§notes: Vec<String>Trait Implementations§
Source§impl Clone for IdentityInteropQualificationCase
impl Clone for IdentityInteropQualificationCase
Source§fn clone(&self) -> IdentityInteropQualificationCase
fn clone(&self) -> IdentityInteropQualificationCase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for IdentityInteropQualificationCase
impl<'de> Deserialize<'de> for IdentityInteropQualificationCase
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 IdentityInteropQualificationCase
impl PartialEq for IdentityInteropQualificationCase
Source§fn eq(&self, other: &IdentityInteropQualificationCase) -> bool
fn eq(&self, other: &IdentityInteropQualificationCase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IdentityInteropQualificationCase
impl StructuralPartialEq for IdentityInteropQualificationCase
Auto Trait Implementations§
impl Freeze for IdentityInteropQualificationCase
impl RefUnwindSafe for IdentityInteropQualificationCase
impl Send for IdentityInteropQualificationCase
impl Sync for IdentityInteropQualificationCase
impl Unpin for IdentityInteropQualificationCase
impl UnsafeUnpin for IdentityInteropQualificationCase
impl UnwindSafe for IdentityInteropQualificationCase
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