pub struct MitIdBackchannelAuthRequest {
pub ssn: Cpr,
pub binding_message: String,
pub callback_url: Option<Url>,
pub ref_id: Option<String>,
}Expand description
Request body for starting a MitID backchannel authentication session.
Fields§
§ssn: CprDanish CPR number.
binding_message: StringMessage displayed in the MitID app to bind the session.
callback_url: Option<Url>URL to receive the result callback on success or failure.
ref_id: Option<String>Reference ID returned verbatim in the result and callback.
Implementations§
Trait Implementations§
Source§impl Clone for MitIdBackchannelAuthRequest
impl Clone for MitIdBackchannelAuthRequest
Source§fn clone(&self) -> MitIdBackchannelAuthRequest
fn clone(&self) -> MitIdBackchannelAuthRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MitIdBackchannelAuthRequest
impl Debug for MitIdBackchannelAuthRequest
Auto Trait Implementations§
impl Freeze for MitIdBackchannelAuthRequest
impl RefUnwindSafe for MitIdBackchannelAuthRequest
impl Send for MitIdBackchannelAuthRequest
impl Sync for MitIdBackchannelAuthRequest
impl Unpin for MitIdBackchannelAuthRequest
impl UnsafeUnpin for MitIdBackchannelAuthRequest
impl UnwindSafe for MitIdBackchannelAuthRequest
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