pub struct MitIdSignRequest {
pub text: String,
pub redirect_url: Option<Url>,
pub ref_id: Option<String>,
}Expand description
Request body for starting a MitID signing session.
Fields§
§text: StringText to sign, displayed in MitID (max 600 chars).
redirect_url: Option<Url>URL to redirect the user to after completing the flow.
ref_id: Option<String>Reference ID returned verbatim in the result and callback.
Implementations§
Trait Implementations§
Source§impl Clone for MitIdSignRequest
impl Clone for MitIdSignRequest
Source§fn clone(&self) -> MitIdSignRequest
fn clone(&self) -> MitIdSignRequest
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 MitIdSignRequest
impl Debug for MitIdSignRequest
Auto Trait Implementations§
impl Freeze for MitIdSignRequest
impl RefUnwindSafe for MitIdSignRequest
impl Send for MitIdSignRequest
impl Sync for MitIdSignRequest
impl Unpin for MitIdSignRequest
impl UnsafeUnpin for MitIdSignRequest
impl UnwindSafe for MitIdSignRequest
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