#[non_exhaustive]pub enum MaterialLayerType {
Texture,
}
Expand description
Available types of layers for a Material
. This enumeration
might be expanded in later versions.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Texture
The layer represents a
texture``Trait Implementations§
Source§impl Clone for MaterialLayerType
impl Clone for MaterialLayerType
Source§fn clone(&self) -> MaterialLayerType
fn clone(&self) -> MaterialLayerType
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 MaterialLayerType
impl Debug for MaterialLayerType
Source§impl Display for MaterialLayerType
impl Display for MaterialLayerType
Source§impl<'a> FromValue<'a> for MaterialLayerType
impl<'a> FromValue<'a> for MaterialLayerType
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for MaterialLayerType
impl<'a> FromValueOptional<'a> for MaterialLayerType
Source§impl Hash for MaterialLayerType
impl Hash for MaterialLayerType
Source§impl Ord for MaterialLayerType
impl Ord for MaterialLayerType
Source§fn cmp(&self, other: &MaterialLayerType) -> Ordering
fn cmp(&self, other: &MaterialLayerType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MaterialLayerType
impl PartialEq for MaterialLayerType
Source§impl PartialOrd for MaterialLayerType
impl PartialOrd for MaterialLayerType
Source§impl SetValue for MaterialLayerType
impl SetValue for MaterialLayerType
Source§impl StaticType for MaterialLayerType
impl StaticType for MaterialLayerType
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for MaterialLayerType
impl Eq for MaterialLayerType
impl StructuralPartialEq for MaterialLayerType
Auto Trait Implementations§
impl Freeze for MaterialLayerType
impl RefUnwindSafe for MaterialLayerType
impl Send for MaterialLayerType
impl Sync for MaterialLayerType
impl Unpin for MaterialLayerType
impl UnwindSafe for MaterialLayerType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.