pub trait FrameMapVacantEntry {
// Required method
fn insert_builder(self, value: FrameBuilder);
}Expand description
Trait describing a vacant entry in a FrameMap.
See FrameMap::entry for details.
Required Methods§
Sourcefn insert_builder(self, value: FrameBuilder)
fn insert_builder(self, value: FrameBuilder)
Insert a new FrameBuilder into the empty entry.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl FrameMapVacantEntry for VacantEntry<'_, FrameId, FrameBuilder>
impl FrameMapVacantEntry for VacantEntry<'_, FrameId, FrameBuilder>
fn insert_builder(self, value: FrameBuilder)
Source§impl FrameMapVacantEntry for VacantEntry<'_, FrameId, FrameBuilder>
Available on crate feature hashbrown only.
impl FrameMapVacantEntry for VacantEntry<'_, FrameId, FrameBuilder>
Available on crate feature
hashbrown only.