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