pub struct CsrGraphFixture {
pub node_count: u32,
pub edge_offsets: Vec<u32>,
pub edge_targets: Vec<u32>,
pub edge_kind_mask: Vec<u32>,
pub expected_reachability: Vec<HashSet<u32>>,
}Fields§
§node_count: u32§edge_offsets: Vec<u32>§edge_targets: Vec<u32>§edge_kind_mask: Vec<u32>§expected_reachability: Vec<HashSet<u32>>Trait Implementations§
Source§impl Clone for CsrGraphFixture
impl Clone for CsrGraphFixture
Source§fn clone(&self) -> CsrGraphFixture
fn clone(&self) -> CsrGraphFixture
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 moreAuto Trait Implementations§
impl Freeze for CsrGraphFixture
impl RefUnwindSafe for CsrGraphFixture
impl Send for CsrGraphFixture
impl Sync for CsrGraphFixture
impl Unpin for CsrGraphFixture
impl UnsafeUnpin for CsrGraphFixture
impl UnwindSafe for CsrGraphFixture
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