#[repr(u8)]pub enum Strip {
Nulls = 1,
Empties = 2,
}Expand description
Specifies the type of strip operation to perform using Bitwise OR eg. Strip::Nulls | Strip::Empties
Variants§
Trait Implementations§
Source§impl RawBitFlags for Strip
impl RawBitFlags for Strip
Source§const EMPTY: Self::Numeric = {transmute(0x00): <strip::Strip as enumflags2::_internal::RawBitFlags>::Numeric}
const EMPTY: Self::Numeric = {transmute(0x00): <strip::Strip as enumflags2::_internal::RawBitFlags>::Numeric}
A value with no bits set.
Source§const DEFAULT: Self::Numeric = {transmute(0x00): <strip::Strip as enumflags2::_internal::RawBitFlags>::Numeric}
const DEFAULT: Self::Numeric = {transmute(0x00): <strip::Strip as enumflags2::_internal::RawBitFlags>::Numeric}
The value used by the Default implementation. Equivalent to EMPTY, unless
customized.
Source§const ALL_BITS: Self::Numeric = {transmute(0x03): <strip::Strip as enumflags2::_internal::RawBitFlags>::Numeric}
const ALL_BITS: Self::Numeric = {transmute(0x03): <strip::Strip as enumflags2::_internal::RawBitFlags>::Numeric}
A value with all flag bits set.
Source§const BITFLAGS_TYPE_NAME: &'static str = "BitFlags<Strip>"
const BITFLAGS_TYPE_NAME: &'static str = "BitFlags<Strip>"
The name of the type for debug formatting purposes. Read more
impl Copy for Strip
impl StructuralPartialEq for Strip
Auto Trait Implementations§
impl Freeze for Strip
impl RefUnwindSafe for Strip
impl Send for Strip
impl Sync for Strip
impl Unpin for Strip
impl UnwindSafe for Strip
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