pub enum DockerIgnoreLine {
Pattern(String),
NegatePattern(String),
Comment(String),
Empty,
}Variants§
Trait Implementations§
Source§impl Clone for DockerIgnoreLine
impl Clone for DockerIgnoreLine
Source§fn clone(&self) -> DockerIgnoreLine
fn clone(&self) -> DockerIgnoreLine
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 DockerIgnoreLine
impl Debug for DockerIgnoreLine
Source§impl PartialEq for DockerIgnoreLine
impl PartialEq for DockerIgnoreLine
impl StructuralPartialEq for DockerIgnoreLine
Auto Trait Implementations§
impl Freeze for DockerIgnoreLine
impl RefUnwindSafe for DockerIgnoreLine
impl Send for DockerIgnoreLine
impl Sync for DockerIgnoreLine
impl Unpin for DockerIgnoreLine
impl UnsafeUnpin for DockerIgnoreLine
impl UnwindSafe for DockerIgnoreLine
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