pub struct ResolvedFerrumConfig {
pub schema_version: u32,
pub preset: Option<String>,
pub runtime_config: RuntimeConfigSnapshot,
pub model_capabilities: ModelCapabilities,
pub hardware_capabilities: HardwareCapabilities,
pub workload_profile: WorkloadProfile,
pub decisions: Vec<AutoConfigDecision>,
}Fields§
§schema_version: u32§preset: Option<String>§runtime_config: RuntimeConfigSnapshot§model_capabilities: ModelCapabilities§hardware_capabilities: HardwareCapabilities§workload_profile: WorkloadProfile§decisions: Vec<AutoConfigDecision>Implementations§
Source§impl ResolvedFerrumConfig
impl ResolvedFerrumConfig
pub fn effective_config_document(&self) -> Value
pub fn admission_summary_document(&self) -> Value
pub fn decision_trace_jsonl(&self) -> Result<String, Error>
pub fn runtime_env_hash(&self) -> String
Trait Implementations§
Source§impl Clone for ResolvedFerrumConfig
impl Clone for ResolvedFerrumConfig
Source§fn clone(&self) -> ResolvedFerrumConfig
fn clone(&self) -> ResolvedFerrumConfig
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 ResolvedFerrumConfig
impl Debug for ResolvedFerrumConfig
Source§impl<'de> Deserialize<'de> for ResolvedFerrumConfig
impl<'de> Deserialize<'de> for ResolvedFerrumConfig
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
impl Eq for ResolvedFerrumConfig
Source§impl PartialEq for ResolvedFerrumConfig
impl PartialEq for ResolvedFerrumConfig
Source§fn eq(&self, other: &ResolvedFerrumConfig) -> bool
fn eq(&self, other: &ResolvedFerrumConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ResolvedFerrumConfig
impl Serialize for ResolvedFerrumConfig
impl StructuralPartialEq for ResolvedFerrumConfig
Auto Trait Implementations§
impl Freeze for ResolvedFerrumConfig
impl RefUnwindSafe for ResolvedFerrumConfig
impl Send for ResolvedFerrumConfig
impl Sync for ResolvedFerrumConfig
impl Unpin for ResolvedFerrumConfig
impl UnsafeUnpin for ResolvedFerrumConfig
impl UnwindSafe for ResolvedFerrumConfig
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