#[repr(C)]pub struct AuthToken {
pub token_type: [c_char; 64],
pub kid: [c_char; 256],
pub mac_key: [c_char; 256],
pub mac_algorithm: [c_char; 64],
pub scope: [c_char; 256],
}Fields§
§token_type: [c_char; 64]§kid: [c_char; 256]§mac_key: [c_char; 256]§mac_algorithm: [c_char; 64]§scope: [c_char; 256]Trait Implementations§
impl Copy for AuthToken
Auto Trait Implementations§
impl Freeze for AuthToken
impl RefUnwindSafe for AuthToken
impl Send for AuthToken
impl Sync for AuthToken
impl Unpin for AuthToken
impl UnwindSafe for AuthToken
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