pub enum ArtifactCompleteness {
FullOnly,
StreamingReady,
MoeReady,
FullyAdaptive,
}Expand description
Which artifact types are present for a model, determining execution modes.
Variants§
FullOnly
Only full-weight artifacts — supports LOCAL_FULL / REMOTE_FULL only.
StreamingReady
Full weights + streaming shards — all non-MoE modes supported.
MoeReady
Full weights + expert shards — MoE hybrid modes supported.
FullyAdaptive
All artifact types present — any execution mode supported.
Trait Implementations§
Source§impl Clone for ArtifactCompleteness
impl Clone for ArtifactCompleteness
Source§fn clone(&self) -> ArtifactCompleteness
fn clone(&self) -> ArtifactCompleteness
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 moreimpl Copy for ArtifactCompleteness
Source§impl Debug for ArtifactCompleteness
impl Debug for ArtifactCompleteness
Source§impl Default for ArtifactCompleteness
impl Default for ArtifactCompleteness
Source§fn default() -> ArtifactCompleteness
fn default() -> ArtifactCompleteness
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArtifactCompleteness
impl<'de> Deserialize<'de> for ArtifactCompleteness
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 ArtifactCompleteness
Source§impl Hash for ArtifactCompleteness
impl Hash for ArtifactCompleteness
Source§impl PartialEq for ArtifactCompleteness
impl PartialEq for ArtifactCompleteness
Source§fn eq(&self, other: &ArtifactCompleteness) -> bool
fn eq(&self, other: &ArtifactCompleteness) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ArtifactCompleteness
impl Serialize for ArtifactCompleteness
impl StructuralPartialEq for ArtifactCompleteness
Auto Trait Implementations§
impl Freeze for ArtifactCompleteness
impl RefUnwindSafe for ArtifactCompleteness
impl Send for ArtifactCompleteness
impl Sync for ArtifactCompleteness
impl Unpin for ArtifactCompleteness
impl UnsafeUnpin for ArtifactCompleteness
impl UnwindSafe for ArtifactCompleteness
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