pub struct TOTPSetupInfo {
pub qr_code: String,
pub secret: String,
pub uri: String,
}
Expand description
TOTP設定情報
Fields§
§qr_code: String
§secret: String
§uri: String
Trait Implementations§
Source§impl Clone for TOTPSetupInfo
impl Clone for TOTPSetupInfo
Source§fn clone(&self) -> TOTPSetupInfo
fn clone(&self) -> TOTPSetupInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TOTPSetupInfo
impl Debug for TOTPSetupInfo
Source§impl<'de> Deserialize<'de> for TOTPSetupInfo
impl<'de> Deserialize<'de> for TOTPSetupInfo
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 TOTPSetupInfo
impl RefUnwindSafe for TOTPSetupInfo
impl Send for TOTPSetupInfo
impl Sync for TOTPSetupInfo
impl Unpin for TOTPSetupInfo
impl UnwindSafe for TOTPSetupInfo
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