pub struct SourceVerification {
pub schema: String,
pub frontier_id: Option<String>,
pub verified_at: String,
pub notes: Vec<String>,
pub sources: Vec<VerifiedSource>,
}Fields§
§schema: String§frontier_id: Option<String>§verified_at: String§notes: Vec<String>§sources: Vec<VerifiedSource>Trait Implementations§
Source§impl Clone for SourceVerification
impl Clone for SourceVerification
Source§fn clone(&self) -> SourceVerification
fn clone(&self) -> SourceVerification
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 SourceVerification
impl Debug for SourceVerification
Source§impl<'de> Deserialize<'de> for SourceVerification
impl<'de> Deserialize<'de> for SourceVerification
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
Auto Trait Implementations§
impl Freeze for SourceVerification
impl RefUnwindSafe for SourceVerification
impl Send for SourceVerification
impl Sync for SourceVerification
impl Unpin for SourceVerification
impl UnsafeUnpin for SourceVerification
impl UnwindSafe for SourceVerification
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