#[repr(C)]pub struct AuthorizeFinishedResponse {
pub is_cancel: bool,
pub error: [c_char; 256],
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§
§is_cancel: bool§error: [c_char; 256]§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§
Source§impl Clone for AuthorizeFinishedResponse
impl Clone for AuthorizeFinishedResponse
Source§fn clone(&self) -> AuthorizeFinishedResponse
fn clone(&self) -> AuthorizeFinishedResponse
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 Debug for AuthorizeFinishedResponse
impl Debug for AuthorizeFinishedResponse
impl Copy for AuthorizeFinishedResponse
Auto Trait Implementations§
impl Freeze for AuthorizeFinishedResponse
impl RefUnwindSafe for AuthorizeFinishedResponse
impl Send for AuthorizeFinishedResponse
impl Sync for AuthorizeFinishedResponse
impl Unpin for AuthorizeFinishedResponse
impl UnwindSafe for AuthorizeFinishedResponse
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