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