pub enum Overlay<'a> {
None,
One(&'a str),
Blend(&'a [(String, f32)]),
}Expand description
Tensor source selector (spec §9): backbone, one skill’s overlay, or a soft superposition of top-m skills (claim 14 working tensors).
Variants§
None
One(&'a str)
Blend(&'a [(String, f32)])
(skill_id, weight); weights sum to 1 (softmax(−E/T) upstream).
Auto Trait Implementations§
impl<'a> Freeze for Overlay<'a>
impl<'a> RefUnwindSafe for Overlay<'a>
impl<'a> Send for Overlay<'a>
impl<'a> Sync for Overlay<'a>
impl<'a> Unpin for Overlay<'a>
impl<'a> UnsafeUnpin for Overlay<'a>
impl<'a> UnwindSafe for Overlay<'a>
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