pub enum ResourcePriority {
VeryLow,
Low,
Medium,
High,
VeryHigh,
}Expand description
Loading priority of a resource request.
Variants
VeryLow
Low
Medium
High
VeryHigh
Trait Implementations
sourceimpl AsRef<str> for ResourcePriority
impl AsRef<str> for ResourcePriority
sourceimpl Clone for ResourcePriority
impl Clone for ResourcePriority
sourcefn clone(&self) -> ResourcePriority
fn clone(&self) -> ResourcePriority
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ResourcePriority
impl Debug for ResourcePriority
sourceimpl<'de> Deserialize<'de> for ResourcePriority
impl<'de> Deserialize<'de> for ResourcePriority
sourcefn 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
sourceimpl FromStr for ResourcePriority
impl FromStr for ResourcePriority
sourceimpl Hash for ResourcePriority
impl Hash for ResourcePriority
sourceimpl PartialEq<ResourcePriority> for ResourcePriority
impl PartialEq<ResourcePriority> for ResourcePriority
sourcefn eq(&self, other: &ResourcePriority) -> bool
fn eq(&self, other: &ResourcePriority) -> bool
sourceimpl Serialize for ResourcePriority
impl Serialize for ResourcePriority
impl Eq for ResourcePriority
impl StructuralEq for ResourcePriority
impl StructuralPartialEq for ResourcePriority
Auto Trait Implementations
impl RefUnwindSafe for ResourcePriority
impl Send for ResourcePriority
impl Sync for ResourcePriority
impl Unpin for ResourcePriority
impl UnwindSafe for ResourcePriority
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more