pub struct RankPassStarted<T> {
pub dp_rank: u32,
pub rank_end_ms: f64,
pub effects: T,
}Expand description
Pass-start effects from one rank.
Fields§
§dp_rank: u32Rank that executed work.
rank_end_ms: f64This rank’s modeled completion time before group alignment.
effects: TEffects visible at pass start.
Trait Implementations§
Source§impl<T: Clone> Clone for RankPassStarted<T>
impl<T: Clone> Clone for RankPassStarted<T>
Source§fn clone(&self) -> RankPassStarted<T>
fn clone(&self) -> RankPassStarted<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for RankPassStarted<T>
impl<T: Debug> Debug for RankPassStarted<T>
Source§impl<T: PartialEq> PartialEq for RankPassStarted<T>
impl<T: PartialEq> PartialEq for RankPassStarted<T>
impl<T: PartialEq> StructuralPartialEq for RankPassStarted<T>
Auto Trait Implementations§
impl<T> Freeze for RankPassStarted<T>where
T: Freeze,
impl<T> RefUnwindSafe for RankPassStarted<T>where
T: RefUnwindSafe,
impl<T> Send for RankPassStarted<T>where
T: Send,
impl<T> Sync for RankPassStarted<T>where
T: Sync,
impl<T> Unpin for RankPassStarted<T>where
T: Unpin,
impl<T> UnsafeUnpin for RankPassStarted<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for RankPassStarted<T>where
T: UnwindSafe,
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