pub struct PipeDominatorTree {
pub idom: Vec<Option<u32>>,
pub dom_children: Vec<Vec<u32>>,
pub dom_depth: Vec<u32>,
}Fields§
§idom: Vec<Option<u32>>§dom_children: Vec<Vec<u32>>§dom_depth: Vec<u32>Implementations§
Trait Implementations§
Source§impl Clone for PipeDominatorTree
impl Clone for PipeDominatorTree
Source§fn clone(&self) -> PipeDominatorTree
fn clone(&self) -> PipeDominatorTree
Returns a duplicate of the value. Read more
1.0.0 · 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 PipeDominatorTree
impl RefUnwindSafe for PipeDominatorTree
impl Send for PipeDominatorTree
impl Sync for PipeDominatorTree
impl Unpin for PipeDominatorTree
impl UnsafeUnpin for PipeDominatorTree
impl UnwindSafe for PipeDominatorTree
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