pub struct AffirmationSignatory {
pub name: Option<String>,
pub role: Option<String>,
pub signature: Option<SignaturePresence>,
pub organization: Option<Organization>,
pub external_reference: Option<ExternalReference>,
}Expand description
A declarations.affirmation.signatories[] entry.
The 1.6 schema constrains each signatory with a oneOf: it must carry
either a JSF signature OR both externalReference and organization.
Self::has_complete_identity reports that constraint; violating
signatories have unusable identity and cannot raise the document’s
evidence level.
Fields§
§name: Option<String>§role: Option<String>§signature: Option<SignaturePresence>JSF signature presence (structural only, never verified).
organization: Option<Organization>§external_reference: Option<ExternalReference>Implementations§
Source§impl AffirmationSignatory
impl AffirmationSignatory
Sourcepub fn has_complete_identity(&self) -> bool
pub fn has_complete_identity(&self) -> bool
Whether the signatory satisfies the schema’s identity oneOf:
a signature, or both an external reference and an organization.
Trait Implementations§
Source§impl Clone for AffirmationSignatory
impl Clone for AffirmationSignatory
Source§fn clone(&self) -> AffirmationSignatory
fn clone(&self) -> AffirmationSignatory
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 AffirmationSignatory
impl Debug for AffirmationSignatory
Source§impl Default for AffirmationSignatory
impl Default for AffirmationSignatory
Source§fn default() -> AffirmationSignatory
fn default() -> AffirmationSignatory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AffirmationSignatory
impl<'de> Deserialize<'de> for AffirmationSignatory
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 AffirmationSignatory
impl PartialEq for AffirmationSignatory
Source§impl Serialize for AffirmationSignatory
impl Serialize for AffirmationSignatory
impl StructuralPartialEq for AffirmationSignatory
Auto Trait Implementations§
impl Freeze for AffirmationSignatory
impl RefUnwindSafe for AffirmationSignatory
impl Send for AffirmationSignatory
impl Sync for AffirmationSignatory
impl Unpin for AffirmationSignatory
impl UnsafeUnpin for AffirmationSignatory
impl UnwindSafe for AffirmationSignatory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more