pub enum RenderTactic {
Discard,
Preserve,
Render,
}
Variants§
Discard
Discard all content for this span. Used to keep storage reasonable.
Preserve
Preserve existing content.
Render
Render content if it is invalid.
Trait Implementations§
Source§impl Clone for RenderTactic
impl Clone for RenderTactic
Source§fn clone(&self) -> RenderTactic
fn clone(&self) -> RenderTactic
Returns a copy 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 PartialEq for RenderTactic
impl PartialEq for RenderTactic
impl Copy for RenderTactic
impl StructuralPartialEq for RenderTactic
Auto Trait Implementations§
impl Freeze for RenderTactic
impl RefUnwindSafe for RenderTactic
impl Send for RenderTactic
impl Sync for RenderTactic
impl Unpin for RenderTactic
impl UnwindSafe for RenderTactic
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