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