pub enum Authorization {
Authorization(Authorization),
}Expand description
Variants§
Authorization(Authorization)
Trait Implementations§
Source§impl Clone for Authorization
impl Clone for Authorization
Source§fn clone(&self) -> Authorization
fn clone(&self) -> Authorization
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 Authorization
impl Debug for Authorization
Source§impl Deserializable for Authorization
impl Deserializable for Authorization
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<Authorization> for Authorization
impl From<Authorization> for Authorization
Source§fn from(x: Authorization) -> Self
fn from(x: Authorization) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Authorization
impl PartialEq for Authorization
Source§impl Serializable for Authorization
impl Serializable for Authorization
Source§impl TryFrom<Authorization> for Authorization
impl TryFrom<Authorization> for Authorization
Source§type Error = Authorization
type Error = Authorization
The type returned in the event of a conversion error.
impl StructuralPartialEq for Authorization
Auto Trait Implementations§
impl Freeze for Authorization
impl RefUnwindSafe for Authorization
impl Send for Authorization
impl Sync for Authorization
impl Unpin for Authorization
impl UnsafeUnpin for Authorization
impl UnwindSafe for Authorization
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