Enum git_stack::config::ShowCommits
source · pub enum ShowCommits {
None,
Unprotected,
All,
}
Variants§
Trait Implementations§
source§impl Clone for ShowCommits
impl Clone for ShowCommits
source§fn clone(&self) -> ShowCommits
fn clone(&self) -> ShowCommits
Returns a copy 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 ShowCommits
impl Debug for ShowCommits
source§impl Default for ShowCommits
impl Default for ShowCommits
source§impl Display for ShowCommits
impl Display for ShowCommits
source§impl FromStr for ShowCommits
impl FromStr for ShowCommits
source§impl PartialEq<ShowCommits> for ShowCommits
impl PartialEq<ShowCommits> for ShowCommits
source§fn eq(&self, other: &ShowCommits) -> bool
fn eq(&self, other: &ShowCommits) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ValueEnum for ShowCommits
impl ValueEnum for ShowCommits
impl Copy for ShowCommits
impl Eq for ShowCommits
impl StructuralEq for ShowCommits
impl StructuralPartialEq for ShowCommits
Auto Trait Implementations§
impl RefUnwindSafe for ShowCommits
impl Send for ShowCommits
impl Sync for ShowCommits
impl Unpin for ShowCommits
impl UnwindSafe for ShowCommits
Blanket Implementations§
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
source§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.