pub enum TemplatePriority {
Critical,
High,
Medium,
Low,
Background,
}
Expand description
Template priority levels for processing optimization
Variants§
Trait Implementations§
Source§impl Clone for TemplatePriority
impl Clone for TemplatePriority
Source§fn clone(&self) -> TemplatePriority
fn clone(&self) -> TemplatePriority
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 TemplatePriority
impl Debug for TemplatePriority
Source§impl<'de> Deserialize<'de> for TemplatePriority
impl<'de> Deserialize<'de> for TemplatePriority
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 TemplatePriority
impl PartialEq for TemplatePriority
Source§impl Serialize for TemplatePriority
impl Serialize for TemplatePriority
impl StructuralPartialEq for TemplatePriority
Auto Trait Implementations§
impl Freeze for TemplatePriority
impl RefUnwindSafe for TemplatePriority
impl Send for TemplatePriority
impl Sync for TemplatePriority
impl Unpin for TemplatePriority
impl UnwindSafe for TemplatePriority
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