pub enum RenderCertificateLevel {
FullRequired,
SkipAll,
NarrowToDirty,
}Expand description
The certified level of work elimination.
Variants§
FullRequired
Full-fidelity work is required; nothing may be skipped.
SkipAll
The diff scan is skipped entirely (no dirty rows).
NarrowToDirty
The diff scan is narrowed to the dirty rows only.
Implementations§
Trait Implementations§
Source§impl Clone for RenderCertificateLevel
impl Clone for RenderCertificateLevel
Source§fn clone(&self) -> RenderCertificateLevel
fn clone(&self) -> RenderCertificateLevel
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 moreimpl Copy for RenderCertificateLevel
Source§impl Debug for RenderCertificateLevel
impl Debug for RenderCertificateLevel
impl Eq for RenderCertificateLevel
Source§impl Hash for RenderCertificateLevel
impl Hash for RenderCertificateLevel
Source§impl PartialEq for RenderCertificateLevel
impl PartialEq for RenderCertificateLevel
impl StructuralPartialEq for RenderCertificateLevel
Auto Trait Implementations§
impl Freeze for RenderCertificateLevel
impl RefUnwindSafe for RenderCertificateLevel
impl Send for RenderCertificateLevel
impl Sync for RenderCertificateLevel
impl Unpin for RenderCertificateLevel
impl UnsafeUnpin for RenderCertificateLevel
impl UnwindSafe for RenderCertificateLevel
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