pub struct NotesCommitIdentity {
pub author: Vec<u8>,
pub committer: Vec<u8>,
}Expand description
Author/committer lines for the notes commit (raw git identity bytes).
Fields§
§committer: Vec<u8>Trait Implementations§
Source§impl Clone for NotesCommitIdentity
impl Clone for NotesCommitIdentity
Source§fn clone(&self) -> NotesCommitIdentity
fn clone(&self) -> NotesCommitIdentity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NotesCommitIdentity
impl Debug for NotesCommitIdentity
impl Eq for NotesCommitIdentity
Source§impl PartialEq for NotesCommitIdentity
impl PartialEq for NotesCommitIdentity
Source§fn eq(&self, other: &NotesCommitIdentity) -> bool
fn eq(&self, other: &NotesCommitIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NotesCommitIdentity
Auto Trait Implementations§
impl Freeze for NotesCommitIdentity
impl RefUnwindSafe for NotesCommitIdentity
impl Send for NotesCommitIdentity
impl Sync for NotesCommitIdentity
impl Unpin for NotesCommitIdentity
impl UnsafeUnpin for NotesCommitIdentity
impl UnwindSafe for NotesCommitIdentity
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