pub struct LibDominatorTree {
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 LibDominatorTree
impl Clone for LibDominatorTree
Source§fn clone(&self) -> LibDominatorTree
fn clone(&self) -> LibDominatorTree
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 LibDominatorTree
impl RefUnwindSafe for LibDominatorTree
impl Send for LibDominatorTree
impl Sync for LibDominatorTree
impl Unpin for LibDominatorTree
impl UnsafeUnpin for LibDominatorTree
impl UnwindSafe for LibDominatorTree
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