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