pub enum AttributeMask {
All,
Some(FxHashSet<Box<str>>),
}
Expand description
A mask that contains a list of attributes that are visible.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AttributeMask
impl Clone for AttributeMask
Source§fn clone(&self) -> AttributeMask
fn clone(&self) -> AttributeMask
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 AttributeMask
impl Debug for AttributeMask
Source§impl Default for AttributeMask
impl Default for AttributeMask
Source§impl PartialEq for AttributeMask
impl PartialEq for AttributeMask
impl Eq for AttributeMask
impl StructuralPartialEq for AttributeMask
Auto Trait Implementations§
impl Freeze for AttributeMask
impl RefUnwindSafe for AttributeMask
impl Send for AttributeMask
impl Sync for AttributeMask
impl Unpin for AttributeMask
impl UnwindSafe for AttributeMask
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