pub enum IgnoreType {
Gitignore,
GlobalGitignore,
CustomIgnore,
DotIgnore,
}
Expand description
Type of ignore file
Variants§
Trait Implementations§
Source§impl Clone for IgnoreType
impl Clone for IgnoreType
Source§fn clone(&self) -> IgnoreType
fn clone(&self) -> IgnoreType
Returns a duplicate 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 IgnoreType
impl Debug for IgnoreType
Source§impl<'de> Deserialize<'de> for IgnoreType
impl<'de> Deserialize<'de> for IgnoreType
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 PartialEq for IgnoreType
impl PartialEq for IgnoreType
Source§impl Serialize for IgnoreType
impl Serialize for IgnoreType
impl Eq for IgnoreType
impl StructuralPartialEq for IgnoreType
Auto Trait Implementations§
impl Freeze for IgnoreType
impl RefUnwindSafe for IgnoreType
impl Send for IgnoreType
impl Sync for IgnoreType
impl Unpin for IgnoreType
impl UnwindSafe for IgnoreType
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