pub struct RotatingBarcodeTotpDetailsTotpParameters {
pub key: Option<String>,
pub value_length: Option<i32>,
}Expand description
Configuration for the key and value length. See https://www.rfc-editor.org/rfc/rfc4226#section-5.3
This type is not used in any activity, and only used as part of another schema.
Fields§
§key: Option<String>The secret key used for the TOTP value generation, encoded as a Base16 string.
value_length: Option<i32>The length of the TOTP value in decimal digits.
Trait Implementations§
Source§impl Clone for RotatingBarcodeTotpDetailsTotpParameters
impl Clone for RotatingBarcodeTotpDetailsTotpParameters
Source§fn clone(&self) -> RotatingBarcodeTotpDetailsTotpParameters
fn clone(&self) -> RotatingBarcodeTotpDetailsTotpParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RotatingBarcodeTotpDetailsTotpParameters
impl Default for RotatingBarcodeTotpDetailsTotpParameters
Source§fn default() -> RotatingBarcodeTotpDetailsTotpParameters
fn default() -> RotatingBarcodeTotpDetailsTotpParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RotatingBarcodeTotpDetailsTotpParameters
impl<'de> Deserialize<'de> for RotatingBarcodeTotpDetailsTotpParameters
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
impl Part for RotatingBarcodeTotpDetailsTotpParameters
Auto Trait Implementations§
impl Freeze for RotatingBarcodeTotpDetailsTotpParameters
impl RefUnwindSafe for RotatingBarcodeTotpDetailsTotpParameters
impl Send for RotatingBarcodeTotpDetailsTotpParameters
impl Sync for RotatingBarcodeTotpDetailsTotpParameters
impl Unpin for RotatingBarcodeTotpDetailsTotpParameters
impl UnwindSafe for RotatingBarcodeTotpDetailsTotpParameters
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