#[non_exhaustive]pub enum MapFlags {
MapExcludeUnmapped,
}
Expand description
Flags controlling the mapping strategy.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MapExcludeUnmapped
Prevent further mapping from being registered.
Trait Implementations§
source§impl Ord for MapFlags
impl Ord for MapFlags
source§impl PartialEq<MapFlags> for MapFlags
impl PartialEq<MapFlags> for MapFlags
source§impl PartialOrd<MapFlags> for MapFlags
impl PartialOrd<MapFlags> for MapFlags
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for MapFlags
impl Eq for MapFlags
impl StructuralEq for MapFlags
impl StructuralPartialEq for MapFlags
Auto Trait Implementations§
impl RefUnwindSafe for MapFlags
impl Send for MapFlags
impl Sync for MapFlags
impl Unpin for MapFlags
impl UnwindSafe for MapFlags
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