pub struct CommitIndexOptions {
pub author: Vec<u8>,
pub committer: Vec<u8>,
pub message: Vec<u8>,
pub reflog_message: Vec<u8>,
pub encoding: Option<Vec<u8>>,
pub signature: Option<Vec<u8>>,
}Fields§
§committer: Vec<u8>§message: Vec<u8>§reflog_message: Vec<u8>§encoding: Option<Vec<u8>>encoding header value (i18n.commitEncoding); None/UTF-8 omits it.
signature: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for CommitIndexOptions
impl Clone for CommitIndexOptions
Source§fn clone(&self) -> CommitIndexOptions
fn clone(&self) -> CommitIndexOptions
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 CommitIndexOptions
impl Debug for CommitIndexOptions
impl Eq for CommitIndexOptions
Source§impl PartialEq for CommitIndexOptions
impl PartialEq for CommitIndexOptions
Source§fn eq(&self, other: &CommitIndexOptions) -> bool
fn eq(&self, other: &CommitIndexOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommitIndexOptions
Auto Trait Implementations§
impl Freeze for CommitIndexOptions
impl RefUnwindSafe for CommitIndexOptions
impl Send for CommitIndexOptions
impl Sync for CommitIndexOptions
impl Unpin for CommitIndexOptions
impl UnsafeUnpin for CommitIndexOptions
impl UnwindSafe for CommitIndexOptions
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