pub struct RackConfig {
pub rack: RackInfoConfig,
pub artifact: ArtifactConfig,
pub project: ProjectConfig,
pub document: DocumentConfig,
}Expand description
Configuration for a rack (model family/algorithm).
Contains all settings for managing a rack including artifact rules, project versioning schemes, and documentation generation.
Fields§
§rack: RackInfoConfig§artifact: ArtifactConfig§project: ProjectConfig§document: DocumentConfigTrait Implementations§
Source§impl Debug for RackConfig
impl Debug for RackConfig
Source§impl Default for RackConfig
impl Default for RackConfig
Source§fn default() -> RackConfig
fn default() -> RackConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RackConfigwhere
RackConfig: Default,
impl<'de> Deserialize<'de> for RackConfigwhere
RackConfig: 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 RackConfig
impl RefUnwindSafe for RackConfig
impl Send for RackConfig
impl Sync for RackConfig
impl Unpin for RackConfig
impl UnwindSafe for RackConfig
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