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