Trait wezterm_dynamic::PlaceDynamic
source · pub trait PlaceDynamic {
// Required method
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§
sourcefn place_dynamic(&self, place: &mut Object)
fn place_dynamic(&self, place: &mut Object)
Convert from Self to Value, by storing directly into the target Object.