pub struct ACLOIDCAuthURLResponse {
pub auth_url: String,
}
Expand description
ACLOIDCAuthURLResponse is the response when starting the OIDC authentication login flow.
This struct was generated based on the Go types of the official Nomad API.
Fields§
§auth_url: String
AuthURL is URL to begin authorization and is where the user logging in should go.
Trait Implementations§
Source§impl Clone for ACLOIDCAuthURLResponse
impl Clone for ACLOIDCAuthURLResponse
Source§fn clone(&self) -> ACLOIDCAuthURLResponse
fn clone(&self) -> ACLOIDCAuthURLResponse
Returns a copy 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 ACLOIDCAuthURLResponse
impl Debug for ACLOIDCAuthURLResponse
Source§impl Default for ACLOIDCAuthURLResponse
impl Default for ACLOIDCAuthURLResponse
Source§fn default() -> ACLOIDCAuthURLResponse
fn default() -> ACLOIDCAuthURLResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ACLOIDCAuthURLResponse
impl<'de> Deserialize<'de> for ACLOIDCAuthURLResponse
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 ACLOIDCAuthURLResponse
impl PartialEq for ACLOIDCAuthURLResponse
Source§impl Serialize for ACLOIDCAuthURLResponse
impl Serialize for ACLOIDCAuthURLResponse
impl StructuralPartialEq for ACLOIDCAuthURLResponse
Auto Trait Implementations§
impl Freeze for ACLOIDCAuthURLResponse
impl RefUnwindSafe for ACLOIDCAuthURLResponse
impl Send for ACLOIDCAuthURLResponse
impl Sync for ACLOIDCAuthURLResponse
impl Unpin for ACLOIDCAuthURLResponse
impl UnwindSafe for ACLOIDCAuthURLResponse
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