pub enum SsmArchitecture {
None,
Gdn,
Mamba2,
}Expand description
SSM (State Space Model) architecture family.
Variants§
None
No SSM layers — pure attention (Mistral, Llama, etc.)
Gdn
Gated Delta Networks (Qwen3.5 family)
Mamba2
Mamba-2 (Nemotron-H family)
Trait Implementations§
Source§impl Clone for SsmArchitecture
impl Clone for SsmArchitecture
Source§fn clone(&self) -> SsmArchitecture
fn clone(&self) -> SsmArchitecture
Returns a duplicate of the value. Read more
1.0.0 · 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 SsmArchitecture
impl Debug for SsmArchitecture
Source§impl PartialEq for SsmArchitecture
impl PartialEq for SsmArchitecture
impl Copy for SsmArchitecture
impl Eq for SsmArchitecture
impl StructuralPartialEq for SsmArchitecture
Auto Trait Implementations§
impl Freeze for SsmArchitecture
impl RefUnwindSafe for SsmArchitecture
impl Send for SsmArchitecture
impl Sync for SsmArchitecture
impl Unpin for SsmArchitecture
impl UnwindSafe for SsmArchitecture
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.