pub enum DestroyAuthKeyRes {
DestroyAuthKeyOk,
DestroyAuthKeyNone,
DestroyAuthKeyFail,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for DestroyAuthKeyRes
impl Clone for DestroyAuthKeyRes
Source§fn clone(&self) -> DestroyAuthKeyRes
fn clone(&self) -> DestroyAuthKeyRes
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 DestroyAuthKeyRes
impl Debug for DestroyAuthKeyRes
Source§impl Deserializable for DestroyAuthKeyRes
impl Deserializable for DestroyAuthKeyRes
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<DestroyAuthKeyFail> for DestroyAuthKeyRes
impl From<DestroyAuthKeyFail> for DestroyAuthKeyRes
Source§fn from(_x: DestroyAuthKeyFail) -> Self
fn from(_x: DestroyAuthKeyFail) -> Self
Converts to this type from the input type.
Source§impl From<DestroyAuthKeyNone> for DestroyAuthKeyRes
impl From<DestroyAuthKeyNone> for DestroyAuthKeyRes
Source§fn from(_x: DestroyAuthKeyNone) -> Self
fn from(_x: DestroyAuthKeyNone) -> Self
Converts to this type from the input type.
Source§impl From<DestroyAuthKeyOk> for DestroyAuthKeyRes
impl From<DestroyAuthKeyOk> for DestroyAuthKeyRes
Source§fn from(_x: DestroyAuthKeyOk) -> Self
fn from(_x: DestroyAuthKeyOk) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DestroyAuthKeyRes
impl PartialEq for DestroyAuthKeyRes
Source§impl Serializable for DestroyAuthKeyRes
impl Serializable for DestroyAuthKeyRes
impl StructuralPartialEq for DestroyAuthKeyRes
Auto Trait Implementations§
impl Freeze for DestroyAuthKeyRes
impl RefUnwindSafe for DestroyAuthKeyRes
impl Send for DestroyAuthKeyRes
impl Sync for DestroyAuthKeyRes
impl Unpin for DestroyAuthKeyRes
impl UnsafeUnpin for DestroyAuthKeyRes
impl UnwindSafe for DestroyAuthKeyRes
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