pub struct PostGwApiV1SsoSessionsRequestHeader {
pub authorization: String,
}Fields§
Specifies the authorization header value (e.g., Bearer eyJ0eXAiOiJKV1…).
- Example:
"Bearer eyJ0eXAiOiJKV1...".to_string()
Trait Implementations§
Source§impl Clone for PostGwApiV1SsoSessionsRequestHeader
impl Clone for PostGwApiV1SsoSessionsRequestHeader
Source§fn clone(&self) -> PostGwApiV1SsoSessionsRequestHeader
fn clone(&self) -> PostGwApiV1SsoSessionsRequestHeader
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 PartialEq for PostGwApiV1SsoSessionsRequestHeader
impl PartialEq for PostGwApiV1SsoSessionsRequestHeader
Source§fn eq(&self, other: &PostGwApiV1SsoSessionsRequestHeader) -> bool
fn eq(&self, other: &PostGwApiV1SsoSessionsRequestHeader) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<&PostGwApiV1SsoSessionsRequestHeader> for HeaderMap
impl TryFrom<&PostGwApiV1SsoSessionsRequestHeader> for HeaderMap
Source§type Error = InvalidHeaderValue
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
Source§impl TryFrom<PostGwApiV1SsoSessionsRequestHeader> for HeaderMap
impl TryFrom<PostGwApiV1SsoSessionsRequestHeader> for HeaderMap
Source§type Error = InvalidHeaderValue
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
Source§impl<'v_a> ValidateArgs<'v_a> for PostGwApiV1SsoSessionsRequestHeader
impl<'v_a> ValidateArgs<'v_a> for PostGwApiV1SsoSessionsRequestHeader
impl StructuralPartialEq for PostGwApiV1SsoSessionsRequestHeader
Auto Trait Implementations§
impl Freeze for PostGwApiV1SsoSessionsRequestHeader
impl RefUnwindSafe for PostGwApiV1SsoSessionsRequestHeader
impl Send for PostGwApiV1SsoSessionsRequestHeader
impl Sync for PostGwApiV1SsoSessionsRequestHeader
impl Unpin for PostGwApiV1SsoSessionsRequestHeader
impl UnsafeUnpin for PostGwApiV1SsoSessionsRequestHeader
impl UnwindSafe for PostGwApiV1SsoSessionsRequestHeader
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