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