pub struct ConfigArquivo {
pub schema_version: u32,
pub keys: Vec<ChaveArmazenada>,
}Expand description
Represents the structured TOML configuration file.
Field names use English (schema_version, keys) to mirror the external TOML format.
Fields§
§schema_version: u32Configuration schema version (currently 1).
keys: Vec<ChaveArmazenada>List of stored API keys.
Trait Implementations§
Source§impl Debug for ConfigArquivo
impl Debug for ConfigArquivo
Source§impl Default for ConfigArquivo
impl Default for ConfigArquivo
Source§fn default() -> ConfigArquivo
fn default() -> ConfigArquivo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigArquivo
impl<'de> Deserialize<'de> for ConfigArquivo
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 ConfigArquivo
impl RefUnwindSafe for ConfigArquivo
impl Send for ConfigArquivo
impl Sync for ConfigArquivo
impl Unpin for ConfigArquivo
impl UnsafeUnpin for ConfigArquivo
impl UnwindSafe for ConfigArquivo
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