pub struct AuthenticationSchemeReference {
pub inputs: Option<Value>,
pub type_: Option<String>,
}
Expand description
Specifies the authentication scheme to be used for authentication.
Fields§
§inputs: Option<Value>
Gets or sets the key and value of the fields used for authentication.
type_: Option<String>
Gets or sets the type of authentication scheme of an endpoint.
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticationSchemeReference
impl Clone for AuthenticationSchemeReference
Source§fn clone(&self) -> AuthenticationSchemeReference
fn clone(&self) -> AuthenticationSchemeReference
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 Default for AuthenticationSchemeReference
impl Default for AuthenticationSchemeReference
Source§fn default() -> AuthenticationSchemeReference
fn default() -> AuthenticationSchemeReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticationSchemeReference
impl<'de> Deserialize<'de> for AuthenticationSchemeReference
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
Source§impl PartialEq for AuthenticationSchemeReference
impl PartialEq for AuthenticationSchemeReference
Source§fn eq(&self, other: &AuthenticationSchemeReference) -> bool
fn eq(&self, other: &AuthenticationSchemeReference) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuthenticationSchemeReference
Auto Trait Implementations§
impl Freeze for AuthenticationSchemeReference
impl RefUnwindSafe for AuthenticationSchemeReference
impl Send for AuthenticationSchemeReference
impl Sync for AuthenticationSchemeReference
impl Unpin for AuthenticationSchemeReference
impl UnwindSafe for AuthenticationSchemeReference
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