pub struct FileCommitCommitVerification {
pub verified: Option<bool>,
pub reason: Option<String>,
pub signature: Option<Option<String>>,
pub payload: Option<Option<String>>,
}
Fields§
§verified: Option<bool>
§reason: Option<String>
§signature: Option<Option<String>>
§payload: Option<Option<String>>
Implementations§
Source§impl FileCommitCommitVerification
impl FileCommitCommitVerification
pub fn new() -> FileCommitCommitVerification
Trait Implementations§
Source§impl Clone for FileCommitCommitVerification
impl Clone for FileCommitCommitVerification
Source§fn clone(&self) -> FileCommitCommitVerification
fn clone(&self) -> FileCommitCommitVerification
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 FileCommitCommitVerification
impl Debug for FileCommitCommitVerification
Source§impl Default for FileCommitCommitVerification
impl Default for FileCommitCommitVerification
Source§fn default() -> FileCommitCommitVerification
fn default() -> FileCommitCommitVerification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileCommitCommitVerification
impl<'de> Deserialize<'de> for FileCommitCommitVerification
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 FileCommitCommitVerification
impl PartialEq for FileCommitCommitVerification
Source§fn eq(&self, other: &FileCommitCommitVerification) -> bool
fn eq(&self, other: &FileCommitCommitVerification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FileCommitCommitVerification
Auto Trait Implementations§
impl Freeze for FileCommitCommitVerification
impl RefUnwindSafe for FileCommitCommitVerification
impl Send for FileCommitCommitVerification
impl Sync for FileCommitCommitVerification
impl Unpin for FileCommitCommitVerification
impl UnwindSafe for FileCommitCommitVerification
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