pub struct CommitVerification {
pub verified: bool,
pub reason: String,
}Expand description
Commit verification info from GitHub API.
Fields§
§verified: bool§reason: StringTrait Implementations§
Source§impl Clone for CommitVerification
impl Clone for CommitVerification
Source§fn clone(&self) -> CommitVerification
fn clone(&self) -> CommitVerification
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 CommitVerification
impl Debug for CommitVerification
Source§impl<'de> Deserialize<'de> for CommitVerification
impl<'de> Deserialize<'de> for CommitVerification
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 CommitVerification
impl RefUnwindSafe for CommitVerification
impl Send for CommitVerification
impl Sync for CommitVerification
impl Unpin for CommitVerification
impl UnsafeUnpin for CommitVerification
impl UnwindSafe for CommitVerification
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