pub struct RudaRakingGrid<T: RudaRecord> { /* private fields */ }Implementations§
Source§impl<T: RudaRecord> RudaRakingGrid<T>
impl<T: RudaRecord> RudaRakingGrid<T>
pub fn new(layout: RudaRakingLayout) -> Self
pub fn placement(&self, thread: usize) -> RudaReference<T>
Sourcepub fn segment(&self, thread: usize) -> RudaReference<T>
pub fn segment(&self, thread: usize) -> RudaReference<T>
First record in a raking thread’s contiguous, aligned segment.
pub fn item(&self, thread: usize, item: usize) -> RudaReference<T>
pub fn __expand_new( scope: &mut Scope, layout: RudaRakingLayout, ) -> <Self as RudaType>::ExpandType
pub fn __expand_placement( scope: &mut Scope, this: <Self as RudaType>::ExpandType, thread: <usize as RudaType>::ExpandType, ) -> <RudaReference<T> as RudaType>::ExpandType
pub fn __expand_segment( scope: &mut Scope, this: <Self as RudaType>::ExpandType, thread: <usize as RudaType>::ExpandType, ) -> <RudaReference<T> as RudaType>::ExpandType
pub fn __expand_item( scope: &mut Scope, this: <Self as RudaType>::ExpandType, thread: <usize as RudaType>::ExpandType, item: <usize as RudaType>::ExpandType, ) -> <RudaReference<T> as RudaType>::ExpandType
Trait Implementations§
Source§impl<T: RudaRecord> RudaType for RudaRakingGrid<T>
impl<T: RudaRecord> RudaType for RudaRakingGrid<T>
type ExpandType = RudaRakingGridExpand<T>
Auto Trait Implementations§
impl<T> Freeze for RudaRakingGrid<T>where
RudaRecordShared<T>: Freeze,
impl<T> RefUnwindSafe for RudaRakingGrid<T>where
RudaRecordShared<T>: RefUnwindSafe,
impl<T> Send for RudaRakingGrid<T>where
RudaRecordShared<T>: Send,
impl<T> Sync for RudaRakingGrid<T>where
RudaRecordShared<T>: Sync,
impl<T> Unpin for RudaRakingGrid<T>where
RudaRecordShared<T>: Unpin,
impl<T> UnsafeUnpin for RudaRakingGrid<T>where
RudaRecordShared<T>: UnsafeUnpin,
impl<T> UnwindSafe for RudaRakingGrid<T>where
RudaRecordShared<T>: UnwindSafe,
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