Struct git_cliff_core::commit::Signature
source · pub struct Signature {
pub name: Option<String>,
pub email: Option<String>,
pub timestamp: i64,
}
Expand description
Commit signature that indicates authorship.
Fields§
§name: Option<String>
Name on the signature.
email: Option<String>
Email on the signature.
timestamp: i64
Time of the signature.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Signature
impl<'de> Deserialize<'de> for Signature
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<'a> From<Signature<'a>> for Signature
Available on crate feature repo
only.
impl<'a> From<Signature<'a>> for Signature
Available on crate feature
repo
only.source§fn from(signature: CommitSignature<'a>) -> Self
fn from(signature: CommitSignature<'a>) -> Self
Converts to this type from the input type.
source§impl PartialEq for Signature
impl PartialEq for Signature
impl Eq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations§
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.