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.
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.