pub struct Continue {
pub additional_data: Vec<u8>,
pub tasks: Vec<String>,
pub text: Option<String>,
}
Expand description
Authentication requires extra steps (eg. 2FA)
Fields§
§additional_data: Vec<u8>
Additional SASL data
tasks: Vec<String>
List of extra authentication steps.
The client may choose any, but the server may respond with more Continue steps until all required steps are fulfilled.
text: Option<String>
Plaintext reason for extra steps
Trait Implementations§
impl StructuralPartialEq for Continue
Auto Trait Implementations§
impl Freeze for Continue
impl RefUnwindSafe for Continue
impl Send for Continue
impl Sync for Continue
impl Unpin for Continue
impl UnwindSafe for Continue
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