pub struct FrejaPending {
pub id: String,
pub ref_id: Option<String>,
pub auto_start_token: Option<String>,
pub qr_data: Option<String>,
}Expand description
Returned while the user has not yet acted in the Freja app.
Fields§
§id: String§ref_id: Option<String>§auto_start_token: Option<String>Freja transaction reference — also used as the autostart token. Absent in backchannel flows.
qr_data: Option<String>Data string to render as the Freja QR code. Absent in backchannel flows.
Trait Implementations§
Source§impl Clone for FrejaPending
impl Clone for FrejaPending
Source§fn clone(&self) -> FrejaPending
fn clone(&self) -> FrejaPending
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 FrejaPending
impl Debug for FrejaPending
Source§impl<'de> Deserialize<'de> for FrejaPending
impl<'de> Deserialize<'de> for FrejaPending
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FrejaPending
impl RefUnwindSafe for FrejaPending
impl Send for FrejaPending
impl Sync for FrejaPending
impl Unpin for FrejaPending
impl UnsafeUnpin for FrejaPending
impl UnwindSafe for FrejaPending
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