pub struct RestDescriptionAuth {
pub oauth2: Option<RestDescriptionAuthOauth2>,
}Expand description
Authentication information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§oauth2: Option<RestDescriptionAuthOauth2>OAuth 2.0 authentication information.
Trait Implementations§
Source§impl Clone for RestDescriptionAuth
impl Clone for RestDescriptionAuth
Source§fn clone(&self) -> RestDescriptionAuth
fn clone(&self) -> RestDescriptionAuth
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RestDescriptionAuth
impl Debug for RestDescriptionAuth
Source§impl Default for RestDescriptionAuth
impl Default for RestDescriptionAuth
Source§fn default() -> RestDescriptionAuth
fn default() -> RestDescriptionAuth
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestDescriptionAuth
impl<'de> Deserialize<'de> for RestDescriptionAuth
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl NestedType for RestDescriptionAuth
impl Part for RestDescriptionAuth
Auto Trait Implementations§
impl Freeze for RestDescriptionAuth
impl RefUnwindSafe for RestDescriptionAuth
impl Send for RestDescriptionAuth
impl Sync for RestDescriptionAuth
impl Unpin for RestDescriptionAuth
impl UnsafeUnpin for RestDescriptionAuth
impl UnwindSafe for RestDescriptionAuth
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