#[repr(C)]pub enum RnsEmbeddedStatus {
Show 15 variants
Ok = 0,
InvalidInput = 1,
InvalidArgument = 2,
InvalidState = 3,
NotFound = 4,
SeqGap = 5,
IntegrityFailure = 6,
ChecksumMismatch = 7,
IdempotencyConflict = 8,
ReplayRejected = 9,
Timeout = 10,
Backpressure = 11,
Disconnected = 12,
StorageCorruption = 13,
Unsupported = 14,
}Variants§
Ok = 0
InvalidInput = 1
InvalidArgument = 2
InvalidState = 3
NotFound = 4
SeqGap = 5
IntegrityFailure = 6
ChecksumMismatch = 7
IdempotencyConflict = 8
ReplayRejected = 9
Timeout = 10
Backpressure = 11
Disconnected = 12
StorageCorruption = 13
Unsupported = 14
Trait Implementations§
Source§impl Clone for RnsEmbeddedStatus
impl Clone for RnsEmbeddedStatus
Source§fn clone(&self) -> RnsEmbeddedStatus
fn clone(&self) -> RnsEmbeddedStatus
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 moreimpl Copy for RnsEmbeddedStatus
Source§impl Debug for RnsEmbeddedStatus
impl Debug for RnsEmbeddedStatus
impl Eq for RnsEmbeddedStatus
Source§impl PartialEq for RnsEmbeddedStatus
impl PartialEq for RnsEmbeddedStatus
Source§fn eq(&self, other: &RnsEmbeddedStatus) -> bool
fn eq(&self, other: &RnsEmbeddedStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RnsEmbeddedStatus
Auto Trait Implementations§
impl Freeze for RnsEmbeddedStatus
impl RefUnwindSafe for RnsEmbeddedStatus
impl Send for RnsEmbeddedStatus
impl Sync for RnsEmbeddedStatus
impl Unpin for RnsEmbeddedStatus
impl UnsafeUnpin for RnsEmbeddedStatus
impl UnwindSafe for RnsEmbeddedStatus
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