pub struct CommitAuditEntry {
pub hash: String,
pub timestamp: String,
pub author_name: String,
pub author_email: String,
pub message: String,
pub signing_method: String,
pub signer: Option<String>,
pub verified: bool,
}Expand description
A single commit audit entry (CLI presentation type).
Fields§
§hash: String§timestamp: String§message: String§signing_method: String§signer: Option<String>§verified: boolTrait Implementations§
Source§impl Clone for CommitAuditEntry
impl Clone for CommitAuditEntry
Source§fn clone(&self) -> CommitAuditEntry
fn clone(&self) -> CommitAuditEntry
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 CommitAuditEntry
impl Debug for CommitAuditEntry
Source§impl<'de> Deserialize<'de> for CommitAuditEntry
impl<'de> Deserialize<'de> for CommitAuditEntry
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 CommitAuditEntry
impl RefUnwindSafe for CommitAuditEntry
impl Send for CommitAuditEntry
impl Sync for CommitAuditEntry
impl Unpin for CommitAuditEntry
impl UnsafeUnpin for CommitAuditEntry
impl UnwindSafe for CommitAuditEntry
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