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