#[non_exhaustive]#[repr(u8)]pub enum SegmentDeleteStatus {
DoNotDelete = 0,
DeleteOne = 1,
DeleteAll = 2,
}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.
Implementations§
Trait Implementations§
Source§impl Clone for SegmentDeleteStatus
impl Clone for SegmentDeleteStatus
Source§fn clone(&self) -> SegmentDeleteStatus
fn clone(&self) -> SegmentDeleteStatus
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 SegmentDeleteStatus
impl Debug for SegmentDeleteStatus
Source§impl Hash for SegmentDeleteStatus
impl Hash for SegmentDeleteStatus
Source§impl PartialEq for SegmentDeleteStatus
impl PartialEq for SegmentDeleteStatus
Source§fn eq(&self, other: &SegmentDeleteStatus) -> bool
fn eq(&self, other: &SegmentDeleteStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SegmentDeleteStatus
impl Eq for SegmentDeleteStatus
impl StructuralPartialEq for SegmentDeleteStatus
Auto Trait Implementations§
impl Freeze for SegmentDeleteStatus
impl RefUnwindSafe for SegmentDeleteStatus
impl Send for SegmentDeleteStatus
impl Sync for SegmentDeleteStatus
impl Unpin for SegmentDeleteStatus
impl UnsafeUnpin for SegmentDeleteStatus
impl UnwindSafe for SegmentDeleteStatus
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