pub struct FluidStateData {
pub fluid: FluidRef,
pub properties: &'static [(&'static str, &'static str)],
}Expand description
Fluid state data emitted by the feature generator without runtime key lookup.
Fields§
§fluid: FluidRefReferenced fluid entry.
properties: &'static [(&'static str, &'static str)]Explicit state properties from the extracted feature config.
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 moreAuto 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