pub struct BatchEntry {
pub subject_id: String,
pub result: VerificationResult,
}Expand description
A single entry in a batch report.
Fields§
§subject_id: String§result: VerificationResultTrait Implementations§
Source§impl Clone for BatchEntry
impl Clone for BatchEntry
Source§fn clone(&self) -> BatchEntry
fn clone(&self) -> BatchEntry
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 Debug for BatchEntry
impl Debug for BatchEntry
Source§impl<'de> Deserialize<'de> for BatchEntry
impl<'de> Deserialize<'de> for BatchEntry
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 BatchEntry
impl PartialEq for BatchEntry
Source§impl Serialize for BatchEntry
impl Serialize for BatchEntry
impl Eq for BatchEntry
impl StructuralPartialEq for BatchEntry
Auto Trait Implementations§
impl Freeze for BatchEntry
impl RefUnwindSafe for BatchEntry
impl Send for BatchEntry
impl Sync for BatchEntry
impl Unpin for BatchEntry
impl UnsafeUnpin for BatchEntry
impl UnwindSafe for BatchEntry
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