pub struct Challenge {
pub challenge: ChallengeText,
pub challenge_hhduc: Option<HhdUcData>,
pub decoupled: bool,
pub no_tan_required: bool,
}Expand description
Challenge information returned from connect().
Fields§
§challenge: ChallengeTextText to display to the user.
challenge_hhduc: Option<HhdUcData>HHD-UC data for optical TAN methods (None for pushTAN).
decoupled: boolWhether this is a decoupled method (pushTAN = true).
no_tan_required: boolIf true, no TAN needed — call fetch() immediately.
Auto Trait Implementations§
impl Freeze for Challenge
impl RefUnwindSafe for Challenge
impl Send for Challenge
impl Sync for Challenge
impl Unpin for Challenge
impl UnsafeUnpin for Challenge
impl UnwindSafe for Challenge
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