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