pub struct LocalLoadPreflight {
pub model_id: String,
pub estimate: ModelMemoryEstimate,
pub configured_ceiling_mb: u64,
pub resident_model_mb: u64,
pub active_reservations_mb: u64,
pub estimated_incremental_mb: u64,
pub accelerator_total_mb: Option<u64>,
pub accelerator_resident_mb: Option<u64>,
pub accelerator_incremental_mb: Option<u64>,
pub live_available_mb: Option<u64>,
pub emergency_reserve_mb: u64,
pub verdict: LocalLoadVerdict,
}Expand description
Result of checking one CAR-managed local allocation against both the saved
policy and live machine headroom. LiveMemoryUnknown is intentionally not
collapsed into Allowed: callers may choose a conservative static-policy
fallback, but must not present the model as safe right now.
Fields§
§model_id: String§estimate: ModelMemoryEstimate§configured_ceiling_mb: u64§resident_model_mb: u64§active_reservations_mb: u64§estimated_incremental_mb: u64§accelerator_total_mb: Option<u64>§accelerator_resident_mb: Option<u64>§accelerator_incremental_mb: Option<u64>§live_available_mb: Option<u64>§emergency_reserve_mb: u64§verdict: LocalLoadVerdictTrait Implementations§
Source§impl Clone for LocalLoadPreflight
impl Clone for LocalLoadPreflight
Source§impl Debug for LocalLoadPreflight
impl Debug for LocalLoadPreflight
Source§impl<'de> Deserialize<'de> for LocalLoadPreflight
impl<'de> Deserialize<'de> for LocalLoadPreflight
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 LocalLoadPreflight
Source§impl PartialEq for LocalLoadPreflight
impl PartialEq for LocalLoadPreflight
Source§impl Serialize for LocalLoadPreflight
impl Serialize for LocalLoadPreflight
impl StructuralPartialEq for LocalLoadPreflight
Auto Trait Implementations§
impl Freeze for LocalLoadPreflight
impl RefUnwindSafe for LocalLoadPreflight
impl Send for LocalLoadPreflight
impl Sync for LocalLoadPreflight
impl Unpin for LocalLoadPreflight
impl UnsafeUnpin for LocalLoadPreflight
impl UnwindSafe for LocalLoadPreflight
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more