#[repr(i16)]pub enum FlvErrorCode {
Show 13 variants
None = 0,
SpuError = 1,
SpuRegisterationFailed = 2,
SpuOffline = 3,
SpuNotFound = 4,
SpuAlreadyExists = 5,
TopicError = 6,
TopicNotFound = 7,
TopicAlreadyExists = 8,
TopicPendingInitialization = 9,
TopicInvalidConfiguration = 10,
PartitionPendingInitialization = 11,
PartitionNotLeader = 12,
}Variants§
None = 0
SpuError = 1
SpuRegisterationFailed = 2
SpuOffline = 3
SpuNotFound = 4
SpuAlreadyExists = 5
TopicError = 6
TopicNotFound = 7
TopicAlreadyExists = 8
TopicPendingInitialization = 9
TopicInvalidConfiguration = 10
PartitionPendingInitialization = 11
PartitionNotLeader = 12
Implementations§
Trait Implementations§
Source§impl Clone for FlvErrorCode
impl Clone for FlvErrorCode
Source§fn clone(&self) -> FlvErrorCode
fn clone(&self) -> FlvErrorCode
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 FlvErrorCode
Source§impl Debug for FlvErrorCode
impl Debug for FlvErrorCode
Source§impl Decoder for FlvErrorCode
impl Decoder for FlvErrorCode
Source§impl Default for FlvErrorCode
impl Default for FlvErrorCode
Source§fn default() -> FlvErrorCode
fn default() -> FlvErrorCode
Returns the “default value” for a type. Read more
Source§impl Encoder for FlvErrorCode
impl Encoder for FlvErrorCode
Source§impl PartialEq for FlvErrorCode
impl PartialEq for FlvErrorCode
Source§fn eq(&self, other: &FlvErrorCode) -> bool
fn eq(&self, other: &FlvErrorCode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FlvErrorCode
impl Serialize for FlvErrorCode
impl StructuralPartialEq for FlvErrorCode
Auto Trait Implementations§
impl Freeze for FlvErrorCode
impl RefUnwindSafe for FlvErrorCode
impl Send for FlvErrorCode
impl Sync for FlvErrorCode
impl Unpin for FlvErrorCode
impl UnsafeUnpin for FlvErrorCode
impl UnwindSafe for FlvErrorCode
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