pub struct StageCost {
pub stage: String,
pub approximate_ops_per_pixel: usize,
pub approximate_reads_per_pixel: usize,
pub approximate_writes_per_pixel: usize,
pub reduction_note: String,
}Fields§
§stage: String§approximate_ops_per_pixel: usize§approximate_reads_per_pixel: usize§approximate_writes_per_pixel: usize§reduction_note: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for StageCost
impl RefUnwindSafe for StageCost
impl Send for StageCost
impl Sync for StageCost
impl Unpin for StageCost
impl UnsafeUnpin for StageCost
impl UnwindSafe for StageCost
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