pub trait PlaceDynamic {
    fn place_dynamic(&self, place: &mut Object);
}
Expand description

The PlaceDynamic trait is used by derived implementations of FromDynamic to implement flattened conversions. Deriving FromDynamic for a struct will usually also derive PlaceDynamic for the same struct. You do not typically consume PlaceDynamic directly.

Required Methods

Convert from Self to Value, by storing directly into the target Object.

Implementors