pub struct MapBindConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> MapBindConstructorBuilder<S>
impl<S: State> MapBindConstructorBuilder<S>
Sourcepub fn build(self) -> MapBindConstructorwhere
S: IsComplete,
pub fn build(self) -> MapBindConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn map_bind(
self,
value: MapBindToken,
) -> MapBindConstructorBuilder<SetMapBind<S>>where
S::MapBind: IsUnset,
pub fn map_bind(
self,
value: MapBindToken,
) -> MapBindConstructorBuilder<SetMapBind<S>>where
S::MapBind: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for MapBindConstructorBuilder<S>
impl<S> RefUnwindSafe for MapBindConstructorBuilder<S>
impl<S> Send for MapBindConstructorBuilder<S>
impl<S> Sync for MapBindConstructorBuilder<S>
impl<S> Unpin for MapBindConstructorBuilder<S>
impl<S> UnwindSafe for MapBindConstructorBuilder<S>
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