pub enum PathspecAttrRequirement {
Set(Vec<u8>),
Unset(Vec<u8>),
Unspecified(Vec<u8>),
Value {
name: Vec<u8>,
value: Vec<u8>,
},
}Variants§
Trait Implementations§
Source§impl Clone for PathspecAttrRequirement
impl Clone for PathspecAttrRequirement
Source§fn clone(&self) -> PathspecAttrRequirement
fn clone(&self) -> PathspecAttrRequirement
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 PathspecAttrRequirement
impl Debug for PathspecAttrRequirement
impl Eq for PathspecAttrRequirement
Source§impl PartialEq for PathspecAttrRequirement
impl PartialEq for PathspecAttrRequirement
Source§fn eq(&self, other: &PathspecAttrRequirement) -> bool
fn eq(&self, other: &PathspecAttrRequirement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PathspecAttrRequirement
Auto Trait Implementations§
impl Freeze for PathspecAttrRequirement
impl RefUnwindSafe for PathspecAttrRequirement
impl Send for PathspecAttrRequirement
impl Sync for PathspecAttrRequirement
impl Unpin for PathspecAttrRequirement
impl UnsafeUnpin for PathspecAttrRequirement
impl UnwindSafe for PathspecAttrRequirement
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