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