pub struct WebSignatureInformation {
pub has_signature: Option<bool>,
pub verified: Option<bool>,
pub signature_verification_reason: Option<String>,
pub verified_at: Option<String>,
pub signed_by_cnb: Option<bool>,
pub signer: Option<Value>,
pub key_expired: Option<bool>,
pub key_id: Option<String>,
pub signature_type: Option<String>,
}
Expand description
WebSignatureInformation 模型
Fields§
§has_signature: Option<bool>
§verified: Option<bool>
§signature_verification_reason: Option<String>
§verified_at: Option<String>
§signed_by_cnb: Option<bool>
§signer: Option<Value>
§key_expired: Option<bool>
§key_id: Option<String>
§signature_type: Option<String>
Trait Implementations§
Source§impl Clone for WebSignatureInformation
impl Clone for WebSignatureInformation
Source§fn clone(&self) -> WebSignatureInformation
fn clone(&self) -> WebSignatureInformation
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 WebSignatureInformation
impl Debug for WebSignatureInformation
Source§impl<'de> Deserialize<'de> for WebSignatureInformation
impl<'de> Deserialize<'de> for WebSignatureInformation
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 WebSignatureInformation
impl RefUnwindSafe for WebSignatureInformation
impl Send for WebSignatureInformation
impl Sync for WebSignatureInformation
impl Unpin for WebSignatureInformation
impl UnwindSafe for WebSignatureInformation
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