pub struct AuthorizeFinishedData {
pub is_cancel: bool,
pub error: Option<String>,
pub token: Option<AuthToken>,
}Expand description
Authorization finished event data
Fields§
§is_cancel: bool§error: Option<String>§token: Option<AuthToken>Trait Implementations§
Source§impl Clone for AuthorizeFinishedData
impl Clone for AuthorizeFinishedData
Source§fn clone(&self) -> AuthorizeFinishedData
fn clone(&self) -> AuthorizeFinishedData
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 AuthorizeFinishedData
impl RefUnwindSafe for AuthorizeFinishedData
impl Send for AuthorizeFinishedData
impl Sync for AuthorizeFinishedData
impl Unpin for AuthorizeFinishedData
impl UnwindSafe for AuthorizeFinishedData
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