pub struct ValueMap {
pub basic: BasicMap,
pub value: Option<f64>,
}
Expand description
Texture map with additional scalar value. The relationship between both will be defined in the application context.
Fields§
§basic: BasicMap
§value: Option<f64>
A scalar value. If the map is supported or not, and it’s relation- ship to a map entry, is defined in the outer context.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ValueMap
impl<'de> Deserialize<'de> for ValueMap
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
impl StructuralPartialEq for ValueMap
Auto Trait Implementations§
impl Freeze for ValueMap
impl RefUnwindSafe for ValueMap
impl Send for ValueMap
impl Sync for ValueMap
impl Unpin for ValueMap
impl UnwindSafe for ValueMap
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