pub struct ConvergioConfig {
pub node: NodeConfig,
pub daemon: DaemonConfig,
pub night: NightConfig,
pub mesh: MeshConfig,
pub inference: InferenceConfig,
pub kernel: KernelConfig,
pub telegram: TelegramConfig,
}Expand description
Top-level config — deserialized from config.toml.
Fields§
§node: NodeConfig§daemon: DaemonConfig§night: NightConfig§mesh: MeshConfig§inference: InferenceConfig§kernel: KernelConfig§telegram: TelegramConfigTrait Implementations§
Source§impl Clone for ConvergioConfig
impl Clone for ConvergioConfig
Source§fn clone(&self) -> ConvergioConfig
fn clone(&self) -> ConvergioConfig
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 ConvergioConfig
impl Debug for ConvergioConfig
Source§impl Default for ConvergioConfig
impl Default for ConvergioConfig
Source§fn default() -> ConvergioConfig
fn default() -> ConvergioConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConvergioConfigwhere
ConvergioConfig: Default,
impl<'de> Deserialize<'de> for ConvergioConfigwhere
ConvergioConfig: Default,
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 ConvergioConfig
impl RefUnwindSafe for ConvergioConfig
impl Send for ConvergioConfig
impl Sync for ConvergioConfig
impl Unpin for ConvergioConfig
impl UnsafeUnpin for ConvergioConfig
impl UnwindSafe for ConvergioConfig
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