pub struct PreRenderResult {
pub level: DegradationLevel,
pub decision: CascadeDecision,
pub prediction: P99Prediction,
}Expand description
Result of a pre-render cascade check.
Fields§
§level: DegradationLevelDegradation level to use for this frame.
decision: CascadeDecisionDecision taken.
prediction: P99PredictionP99 prediction from the guard.
Trait Implementations§
Source§impl Clone for PreRenderResult
impl Clone for PreRenderResult
Source§fn clone(&self) -> PreRenderResult
fn clone(&self) -> PreRenderResult
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 moreAuto Trait Implementations§
impl Freeze for PreRenderResult
impl RefUnwindSafe for PreRenderResult
impl Send for PreRenderResult
impl Sync for PreRenderResult
impl Unpin for PreRenderResult
impl UnsafeUnpin for PreRenderResult
impl UnwindSafe for PreRenderResult
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