pub struct TectonConfig {
pub mode: RuntimeMode,
pub server: ServerConfig,
pub storage: StorageConfig,
pub compute: ComputeConfig,
pub log_level: String,
}Expand description
Top-level Tecton configuration.
Fields§
§mode: RuntimeMode§server: ServerConfig§storage: StorageConfig§compute: ComputeConfig§log_level: StringLog filter directive (e.g. info, tecton=debug).
Implementations§
Source§impl TectonConfig
impl TectonConfig
Trait Implementations§
Source§impl Clone for TectonConfig
impl Clone for TectonConfig
Source§fn clone(&self) -> TectonConfig
fn clone(&self) -> TectonConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TectonConfig
impl Debug for TectonConfig
Source§impl Default for TectonConfig
impl Default for TectonConfig
Source§impl<'de> Deserialize<'de> for TectonConfig
impl<'de> Deserialize<'de> for TectonConfig
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 TectonConfig
impl RefUnwindSafe for TectonConfig
impl Send for TectonConfig
impl Sync for TectonConfig
impl Unpin for TectonConfig
impl UnsafeUnpin for TectonConfig
impl UnwindSafe for TectonConfig
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