pub struct FluidStateData {
pub name: Identifier,
pub properties: BTreeMap<String, String>,
}Expand description
Fluid state data as encoded by vanilla registry JSON.
Fields§
§name: IdentifierFluid identifier.
properties: BTreeMap<String, String>String-valued fluid-state properties.
Trait Implementations§
Source§impl Clone for FluidStateData
impl Clone for FluidStateData
Source§fn clone(&self) -> FluidStateData
fn clone(&self) -> FluidStateData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FluidStateData
impl Debug for FluidStateData
Source§impl<'de> Deserialize<'de> for FluidStateData
impl<'de> Deserialize<'de> for FluidStateData
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
Auto Trait Implementations§
impl Freeze for FluidStateData
impl RefUnwindSafe for FluidStateData
impl Send for FluidStateData
impl Sync for FluidStateData
impl Unpin for FluidStateData
impl UnsafeUnpin for FluidStateData
impl UnwindSafe for FluidStateData
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