pub enum ArchClass {
TextDense,
TextMoE,
VL,
VLA,
}Expand description
Architecture class for graph / loader hooks.
Variants§
TextDense
Dense decoder-only LLM (Gemma / Qwen / LFM / …).
TextMoE
MoE text (LFM2-8B-A1B / Inkling); Session top-k router + expert FFN.
VL
Vision-language.
VLA
Vision-language-action.
Trait Implementations§
impl Copy for ArchClass
impl Eq for ArchClass
impl StructuralPartialEq for ArchClass
Auto Trait Implementations§
impl Freeze for ArchClass
impl RefUnwindSafe for ArchClass
impl Send for ArchClass
impl Sync for ArchClass
impl Unpin for ArchClass
impl UnsafeUnpin for ArchClass
impl UnwindSafe for ArchClass
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,
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