pub struct DSEExtPassRegistry { /* private fields */ }Expand description
Pass registry for DSEExt.
Implementations§
Source§impl DSEExtPassRegistry
impl DSEExtPassRegistry
pub fn new() -> Self
pub fn register(&mut self, c: DSEExtPassConfig)
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn get(&self, i: usize) -> Option<&DSEExtPassConfig>
pub fn get_stats(&self, i: usize) -> Option<&DSEExtPassStats>
pub fn enabled_passes(&self) -> Vec<&DSEExtPassConfig>
pub fn passes_in_phase(&self, ph: &DSEExtPassPhase) -> Vec<&DSEExtPassConfig>
pub fn total_nodes_visited(&self) -> usize
pub fn any_changed(&self) -> bool
Trait Implementations§
Source§impl Debug for DSEExtPassRegistry
impl Debug for DSEExtPassRegistry
Source§impl Default for DSEExtPassRegistry
impl Default for DSEExtPassRegistry
Source§fn default() -> DSEExtPassRegistry
fn default() -> DSEExtPassRegistry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DSEExtPassRegistry
impl RefUnwindSafe for DSEExtPassRegistry
impl Send for DSEExtPassRegistry
impl Sync for DSEExtPassRegistry
impl Unpin for DSEExtPassRegistry
impl UnsafeUnpin for DSEExtPassRegistry
impl UnwindSafe for DSEExtPassRegistry
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