pub enum SecureChannelGeneralCode {
Show 19 variants
Success = 0,
Failure = 1,
BadPrecondition = 2,
OutOfRange = 3,
BadRequest = 4,
Unsupported = 5,
Unexpected = 6,
ResourceExhausted = 7,
Busy = 8,
Timeout = 9,
Continue = 10,
Aborted = 11,
InvalidArgument = 12,
NotFound = 13,
AlreadyExists = 14,
PermissionDenied = 15,
DataLoss = 16,
MessageTooLarge = 17,
Unknown = 65_535,
}
Variants§
Success = 0
Failure = 1
BadPrecondition = 2
OutOfRange = 3
BadRequest = 4
Unsupported = 5
Unexpected = 6
ResourceExhausted = 7
Busy = 8
Timeout = 9
Continue = 10
Aborted = 11
InvalidArgument = 12
NotFound = 13
AlreadyExists = 14
PermissionDenied = 15
DataLoss = 16
MessageTooLarge = 17
Unknown = 65_535
Trait Implementations§
Source§impl Clone for SecureChannelGeneralCode
impl Clone for SecureChannelGeneralCode
Source§fn clone(&self) -> SecureChannelGeneralCode
fn clone(&self) -> SecureChannelGeneralCode
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 SecureChannelGeneralCode
impl Debug for SecureChannelGeneralCode
Source§impl Display for SecureChannelGeneralCode
impl Display for SecureChannelGeneralCode
Source§impl From<u16> for SecureChannelGeneralCode
impl From<u16> for SecureChannelGeneralCode
impl Copy for SecureChannelGeneralCode
Auto Trait Implementations§
impl Freeze for SecureChannelGeneralCode
impl RefUnwindSafe for SecureChannelGeneralCode
impl Send for SecureChannelGeneralCode
impl Sync for SecureChannelGeneralCode
impl Unpin for SecureChannelGeneralCode
impl UnwindSafe for SecureChannelGeneralCode
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