Struct fastly_api::models::token_response_all_of::TokenResponseAllOf
source · [−]pub struct TokenResponseAllOf {
pub id: Option<Box<String>>,
pub user_id: Option<Box<String>>,
pub created_at: Option<String>,
pub last_used_at: Option<String>,
pub expires_at: Option<String>,
pub ip: Option<String>,
pub user_agent: Option<String>,
}Fields
id: Option<Box<String>>user_id: Option<Box<String>>created_at: Option<String>Time-stamp (UTC) of when the token was created.
last_used_at: Option<String>Time-stamp (UTC) of when the token was last used.
expires_at: Option<String>Time-stamp (UTC) of when the token will expire (optional).
ip: Option<String>IP Address of the client that last used the token.
user_agent: Option<String>User-Agent header of the client that last used the token.
Implementations
sourceimpl TokenResponseAllOf
impl TokenResponseAllOf
pub fn new() -> TokenResponseAllOf
Trait Implementations
sourceimpl Clone for TokenResponseAllOf
impl Clone for TokenResponseAllOf
sourcefn clone(&self) -> TokenResponseAllOf
fn clone(&self) -> TokenResponseAllOf
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TokenResponseAllOf
impl Debug for TokenResponseAllOf
sourceimpl Default for TokenResponseAllOf
impl Default for TokenResponseAllOf
sourcefn default() -> TokenResponseAllOf
fn default() -> TokenResponseAllOf
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for TokenResponseAllOf
impl<'de> Deserialize<'de> for TokenResponseAllOf
sourcefn 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
sourceimpl PartialEq<TokenResponseAllOf> for TokenResponseAllOf
impl PartialEq<TokenResponseAllOf> for TokenResponseAllOf
sourcefn eq(&self, other: &TokenResponseAllOf) -> bool
fn eq(&self, other: &TokenResponseAllOf) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for TokenResponseAllOf
impl Serialize for TokenResponseAllOf
impl StructuralPartialEq for TokenResponseAllOf
Auto Trait Implementations
impl RefUnwindSafe for TokenResponseAllOf
impl Send for TokenResponseAllOf
impl Sync for TokenResponseAllOf
impl Unpin for TokenResponseAllOf
impl UnwindSafe for TokenResponseAllOf
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more