pub struct RuntimeCellExpand<T: CubeType> { /* private fields */ }
Implementations§
Source§impl<T: CubePrimitive> RuntimeCellExpand<T>
impl<T: CubePrimitive> RuntimeCellExpand<T>
pub fn __expand_store_method( self, scope: &mut Scope, value: <T as CubeType>::ExpandType, ) -> <() as CubeType>::ExpandType
pub fn __expand_read_method( self, scope: &mut Scope, ) -> <T as CubeType>::ExpandType
pub fn __expand_consume_method( self, scope: &mut Scope, ) -> <T as CubeType>::ExpandType
pub fn __expand_new( scope: &mut Scope, init: <T as CubeType>::ExpandType, ) -> Self
pub fn __expand_store( scope: &mut Scope, this: Self, value: <T as CubeType>::ExpandType, ) -> <() as CubeType>::ExpandType
pub fn __expand_read( scope: &mut Scope, this: Self, ) -> <T as CubeType>::ExpandType
pub fn __expand_consume( scope: &mut Scope, this: Self, ) -> <T as CubeType>::ExpandType
Source§impl<T: CubeIndexMut> RuntimeCellExpand<T>
impl<T: CubeIndexMut> RuntimeCellExpand<T>
pub fn __expand_store_at_method( self, scope: &mut Scope, index: <u32 as CubeType>::ExpandType, value: <T::Output as CubeType>::ExpandType, ) -> <() as CubeType>::ExpandType
pub fn __expand_store_at( scope: &mut Scope, this: Self, index: <u32 as CubeType>::ExpandType, value: <T::Output as CubeType>::ExpandType, ) -> <() as CubeType>::ExpandType
Source§impl<T: CubeIndex> RuntimeCellExpand<T>
impl<T: CubeIndex> RuntimeCellExpand<T>
pub fn __expand_read_at_method( self, scope: &mut Scope, index: <u32 as CubeType>::ExpandType, ) -> <T::Output as CubeType>::ExpandType
pub fn __expand_read_at( scope: &mut Scope, this: Self, index: <u32 as CubeType>::ExpandType, ) -> <T::Output as CubeType>::ExpandType
Trait Implementations§
Source§impl<T: CubeType> Clone for RuntimeCellExpand<T>
impl<T: CubeType> Clone for RuntimeCellExpand<T>
Source§impl<T: CubeType> CubeDebug for RuntimeCellExpand<T>
impl<T: CubeType> CubeDebug for RuntimeCellExpand<T>
Source§fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
Set the debug name of this type’s expansion. Should do nothing for types that don’t appear
at runtime
Auto Trait Implementations§
impl<T> Freeze for RuntimeCellExpand<T>
impl<T> RefUnwindSafe for RuntimeCellExpand<T>
impl<T> Send for RuntimeCellExpand<T>
impl<T> Sync for RuntimeCellExpand<T>
impl<T> Unpin for RuntimeCellExpand<T>
impl<T> UnwindSafe for RuntimeCellExpand<T>
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