pub enum RenderDecisionCategory {
Ok,
Binary,
TooLarge,
Ignored,
Empty,
Other,
}
Expand description
Standard categories for render decisions
Variants§
Trait Implementations§
Source§impl Clone for RenderDecisionCategory
impl Clone for RenderDecisionCategory
Source§fn clone(&self) -> RenderDecisionCategory
fn clone(&self) -> RenderDecisionCategory
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 moreSource§impl Debug for RenderDecisionCategory
impl Debug for RenderDecisionCategory
Source§impl<'de> Deserialize<'de> for RenderDecisionCategory
impl<'de> Deserialize<'de> for RenderDecisionCategory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RenderDecisionCategory
impl PartialEq for RenderDecisionCategory
Source§impl Serialize for RenderDecisionCategory
impl Serialize for RenderDecisionCategory
impl Copy for RenderDecisionCategory
impl Eq for RenderDecisionCategory
impl StructuralPartialEq for RenderDecisionCategory
Auto Trait Implementations§
impl Freeze for RenderDecisionCategory
impl RefUnwindSafe for RenderDecisionCategory
impl Send for RenderDecisionCategory
impl Sync for RenderDecisionCategory
impl Unpin for RenderDecisionCategory
impl UnwindSafe for RenderDecisionCategory
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