pub struct CsrQueueSplitLowForwardCpuResult {
pub frontier_out: Vec<u32>,
pub high_queue: Vec<u32>,
pub high_len: u32,
}Expand description
CPU result for the low split pass.
Fields§
§frontier_out: Vec<u32>Frontier bitset after low-degree rows and overflow high rows were emitted.
high_queue: Vec<u32>Compact queue of high-degree sources that fit in the high queue capacity.
high_len: u32Total high-degree source count observed, including entries beyond capacity.
Trait Implementations§
Source§impl Clone for CsrQueueSplitLowForwardCpuResult
impl Clone for CsrQueueSplitLowForwardCpuResult
Source§fn clone(&self) -> CsrQueueSplitLowForwardCpuResult
fn clone(&self) -> CsrQueueSplitLowForwardCpuResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Eq for CsrQueueSplitLowForwardCpuResult
impl StructuralPartialEq for CsrQueueSplitLowForwardCpuResult
Auto Trait Implementations§
impl Freeze for CsrQueueSplitLowForwardCpuResult
impl RefUnwindSafe for CsrQueueSplitLowForwardCpuResult
impl Send for CsrQueueSplitLowForwardCpuResult
impl Sync for CsrQueueSplitLowForwardCpuResult
impl Unpin for CsrQueueSplitLowForwardCpuResult
impl UnsafeUnpin for CsrQueueSplitLowForwardCpuResult
impl UnwindSafe for CsrQueueSplitLowForwardCpuResult
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.