pub struct AccessTokenInfo {
pub id: AccessTokenId,
pub expires_at: OffsetDateTime,
pub auto_prefix_streams: bool,
pub scope: AccessTokenScope,
}Fields§
§id: AccessTokenId§expires_at: OffsetDateTime§auto_prefix_streams: bool§scope: AccessTokenScopeTrait Implementations§
Source§impl Clone for AccessTokenInfo
impl Clone for AccessTokenInfo
Source§fn clone(&self) -> AccessTokenInfo
fn clone(&self) -> AccessTokenInfo
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 moreAuto Trait Implementations§
impl Freeze for AccessTokenInfo
impl RefUnwindSafe for AccessTokenInfo
impl Send for AccessTokenInfo
impl Sync for AccessTokenInfo
impl Unpin for AccessTokenInfo
impl UnwindSafe for AccessTokenInfo
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