pub struct AnnotateArgs {
pub commit: String,
pub live: bool,
pub squash_sources: Option<String>,
pub amend_source: Option<String>,
pub summary: Option<String>,
pub json_input: Option<String>,
pub auto: bool,
}Fields§
§commit: String§live: bool§squash_sources: Option<String>§amend_source: Option<String>§summary: Option<String>§json_input: Option<String>§auto: boolAuto Trait Implementations§
impl Freeze for AnnotateArgs
impl RefUnwindSafe for AnnotateArgs
impl Send for AnnotateArgs
impl Sync for AnnotateArgs
impl Unpin for AnnotateArgs
impl UnsafeUnpin for AnnotateArgs
impl UnwindSafe for AnnotateArgs
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more