pub struct ChaveArmazenada {
pub value: String,
pub added_at: String,
}Expand description
Represents a stored API key entry in the XDG configuration file.
Field names use English (value, added_at) to mirror the external TOML format.
Fields§
§value: StringThe API key value.
added_at: StringRFC 3339 timestamp when the key was added.
Trait Implementations§
Source§impl Clone for ChaveArmazenada
impl Clone for ChaveArmazenada
Source§fn clone(&self) -> ChaveArmazenada
fn clone(&self) -> ChaveArmazenada
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 Debug for ChaveArmazenada
impl Debug for ChaveArmazenada
Source§impl<'de> Deserialize<'de> for ChaveArmazenada
impl<'de> Deserialize<'de> for ChaveArmazenada
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 ChaveArmazenada
impl RefUnwindSafe for ChaveArmazenada
impl Send for ChaveArmazenada
impl Sync for ChaveArmazenada
impl Unpin for ChaveArmazenada
impl UnsafeUnpin for ChaveArmazenada
impl UnwindSafe for ChaveArmazenada
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