pub struct EntriesGetOutputItemsEntriesItems {
pub created: u64,
pub description: String,
pub enable: Option<bool>,
pub id: String,
pub ty: Type,
pub additional_properties: HashMap<String, Value>,
}
Fields§
§created: u64
Creation time of this entry as unix epoch.
description: String
User chosen description for this entry.
enable: Option<bool>
Whether this TFA entry is currently enabled.
id: String
The id used to reference this entry.
ty: Type
TFA Entry Type.
additional_properties: HashMap<String, Value>
Implementations§
Trait Implementations§
Source§impl Clone for EntriesGetOutputItemsEntriesItems
impl Clone for EntriesGetOutputItemsEntriesItems
Source§fn clone(&self) -> EntriesGetOutputItemsEntriesItems
fn clone(&self) -> EntriesGetOutputItemsEntriesItems
Returns a copy 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<'de> Deserialize<'de> for EntriesGetOutputItemsEntriesItems
impl<'de> Deserialize<'de> for EntriesGetOutputItemsEntriesItems
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 EntriesGetOutputItemsEntriesItems
impl RefUnwindSafe for EntriesGetOutputItemsEntriesItems
impl Send for EntriesGetOutputItemsEntriesItems
impl Sync for EntriesGetOutputItemsEntriesItems
impl Unpin for EntriesGetOutputItemsEntriesItems
impl UnwindSafe for EntriesGetOutputItemsEntriesItems
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