pub struct MetalExtPassStats {
pub iterations: usize,
pub changed: bool,
pub nodes_visited: usize,
pub nodes_modified: usize,
pub time_ms: u64,
pub memory_bytes: usize,
pub errors: usize,
}Expand description
Statistics for MetalExt passes.
Fields§
§iterations: usize§changed: bool§nodes_visited: usize§nodes_modified: usize§time_ms: u64§memory_bytes: usize§errors: usizeImplementations§
Trait Implementations§
Source§impl Clone for MetalExtPassStats
impl Clone for MetalExtPassStats
Source§fn clone(&self) -> MetalExtPassStats
fn clone(&self) -> MetalExtPassStats
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 moreSource§impl Debug for MetalExtPassStats
impl Debug for MetalExtPassStats
Source§impl Default for MetalExtPassStats
impl Default for MetalExtPassStats
Source§fn default() -> MetalExtPassStats
fn default() -> MetalExtPassStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MetalExtPassStats
impl RefUnwindSafe for MetalExtPassStats
impl Send for MetalExtPassStats
impl Sync for MetalExtPassStats
impl Unpin for MetalExtPassStats
impl UnsafeUnpin for MetalExtPassStats
impl UnwindSafe for MetalExtPassStats
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