pub enum Command_Status_StatusCode {
Show 25 variants
INVALID_STATUS_CODE = -1,
NOT_ATTEMPTED = 0,
SUCCESS = 1,
HMAC_FAILURE = 2,
NOT_AUTHORIZED = 3,
VERSION_FAILURE = 4,
INTERNAL_ERROR = 5,
HEADER_REQUIRED = 6,
NOT_FOUND = 7,
VERSION_MISMATCH = 8,
SERVICE_BUSY = 9,
EXPIRED = 10,
DATA_ERROR = 11,
PERM_DATA_ERROR = 12,
REMOTE_CONNECTION_ERROR = 13,
NO_SPACE = 14,
NO_SUCH_HMAC_ALGORITHM = 15,
INVALID_REQUEST = 16,
NESTED_OPERATION_ERRORS = 17,
DEVICE_LOCKED = 18,
DEVICE_ALREADY_UNLOCKED = 19,
CONNECTION_TERMINATED = 20,
INVALID_BATCH = 21,
HIBERNATE = 22,
SHUTDOWN = 23,
}Variants§
INVALID_STATUS_CODE = -1
NOT_ATTEMPTED = 0
SUCCESS = 1
HMAC_FAILURE = 2
NOT_AUTHORIZED = 3
VERSION_FAILURE = 4
INTERNAL_ERROR = 5
HEADER_REQUIRED = 6
NOT_FOUND = 7
VERSION_MISMATCH = 8
SERVICE_BUSY = 9
EXPIRED = 10
DATA_ERROR = 11
PERM_DATA_ERROR = 12
REMOTE_CONNECTION_ERROR = 13
NO_SPACE = 14
NO_SUCH_HMAC_ALGORITHM = 15
INVALID_REQUEST = 16
NESTED_OPERATION_ERRORS = 17
DEVICE_LOCKED = 18
DEVICE_ALREADY_UNLOCKED = 19
CONNECTION_TERMINATED = 20
INVALID_BATCH = 21
HIBERNATE = 22
SHUTDOWN = 23
Trait Implementations§
Source§impl Clone for Command_Status_StatusCode
impl Clone for Command_Status_StatusCode
Source§fn clone(&self) -> Command_Status_StatusCode
fn clone(&self) -> Command_Status_StatusCode
Returns a duplicate of the value. Read more
1.0.0 · 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 Command_Status_StatusCode
impl Debug for Command_Status_StatusCode
Source§impl Hash for Command_Status_StatusCode
impl Hash for Command_Status_StatusCode
Source§impl ProtobufEnum for Command_Status_StatusCode
impl ProtobufEnum for Command_Status_StatusCode
fn value(&self) -> i32
fn from_i32(value: i32) -> Option<Command_Status_StatusCode>
fn values() -> &'static [Self]
fn enum_descriptor_static( _: Option<Command_Status_StatusCode>, ) -> &'static EnumDescriptor
fn descriptor(&self) -> &'static EnumValueDescriptor
fn enum_descriptor(&self) -> &'static EnumDescriptor
impl Copy for Command_Status_StatusCode
impl Eq for Command_Status_StatusCode
impl StructuralPartialEq for Command_Status_StatusCode
Auto Trait Implementations§
impl Freeze for Command_Status_StatusCode
impl RefUnwindSafe for Command_Status_StatusCode
impl Send for Command_Status_StatusCode
impl Sync for Command_Status_StatusCode
impl Unpin for Command_Status_StatusCode
impl UnwindSafe for Command_Status_StatusCode
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