#[repr(C)]pub struct IdfContext {
pub queue: BinaryHeap<BlockAndOrdering>,
pub worklist: Vec<u32>,
pub visits: Vec<IdfVisitMarks>,
pub idf: Vec<u32>,
}Fields§
§queue: BinaryHeap<BlockAndOrdering>§worklist: Vec<u32>§visits: Vec<IdfVisitMarks>§idf: Vec<u32>Trait Implementations§
Source§impl Clone for IdfContext
impl Clone for IdfContext
Source§fn clone(&self) -> IdfContext
fn clone(&self) -> IdfContext
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 moreSource§impl Debug for IdfContext
impl Debug for IdfContext
Source§impl Default for IdfContext
impl Default for IdfContext
Source§fn default() -> IdfContext
fn default() -> IdfContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IdfContext
impl RefUnwindSafe for IdfContext
impl Send for IdfContext
impl Sync for IdfContext
impl Unpin for IdfContext
impl UnsafeUnpin for IdfContext
impl UnwindSafe for IdfContext
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