pub struct CsrQueueDeltaEnqueueParams<'a> {Show 13 fields
pub active_queue: &'a str,
pub active_len: &'a str,
pub edge_offsets: &'a str,
pub edge_targets: &'a str,
pub edge_kind_mask: &'a str,
pub accumulator: &'a str,
pub next_queue: &'a str,
pub next_len: &'a str,
pub node_count: u32,
pub edge_count: u32,
pub active_queue_capacity: u32,
pub next_queue_capacity: u32,
pub allow_mask: u32,
}Expand description
Positional inputs shared by csr_queue_delta_enqueue and
csr_queue_delta_strided_enqueue.
Fields§
§active_queue: &'a strCompacted queue of active source nodes.
active_len: &'a strSingle-element resident length of active_queue.
edge_offsets: &'a strCSR row pointers, node_count + 1 entries.
edge_targets: &'a strCSR edge destinations.
edge_kind_mask: &'a strPer-edge kind bits tested against allow_mask.
accumulator: &'a strMonotone reachability bitset each reached destination is ORed into.
next_queue: &'a strQueue first-time discoveries are appended to.
next_len: &'a strSingle-element observed next length, which may exceed the capacity.
node_count: u32Node count the CSR row pointers and destination bounds are sized by.
edge_count: u32Logical edge count the edge-slot bound check uses.
active_queue_capacity: u32Static capacity of active_queue.
next_queue_capacity: u32Static capacity of next_queue.
allow_mask: u32Edge kinds this traversal is allowed to follow.
Trait Implementations§
Source§impl<'a> Clone for CsrQueueDeltaEnqueueParams<'a>
impl<'a> Clone for CsrQueueDeltaEnqueueParams<'a>
Source§fn clone(&self) -> CsrQueueDeltaEnqueueParams<'a>
fn clone(&self) -> CsrQueueDeltaEnqueueParams<'a>
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<'a> Copy for CsrQueueDeltaEnqueueParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for CsrQueueDeltaEnqueueParams<'a>
impl<'a> RefUnwindSafe for CsrQueueDeltaEnqueueParams<'a>
impl<'a> Send for CsrQueueDeltaEnqueueParams<'a>
impl<'a> Sync for CsrQueueDeltaEnqueueParams<'a>
impl<'a> Unpin for CsrQueueDeltaEnqueueParams<'a>
impl<'a> UnsafeUnpin for CsrQueueDeltaEnqueueParams<'a>
impl<'a> UnwindSafe for CsrQueueDeltaEnqueueParams<'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