pub struct TomlRootConfig {
pub primary: PrimarySectionConfig,
}
Expand description
Represents the root structure of the Config.toml
file.
erpc-analysis
is primarily interested in the settings within the
[primary]
table.
Fields§
§primary: PrimarySectionConfig
Configuration settings from the [primary]
table of the TOML file.
Trait Implementations§
source§impl Debug for TomlRootConfig
impl Debug for TomlRootConfig
source§impl<'de> Deserialize<'de> for TomlRootConfig
impl<'de> Deserialize<'de> for TomlRootConfig
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 TomlRootConfig
impl RefUnwindSafe for TomlRootConfig
impl Send for TomlRootConfig
impl Sync for TomlRootConfig
impl Unpin for TomlRootConfig
impl UnwindSafe for TomlRootConfig
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