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