pub struct StringsListConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> StringsListConstructorBuilder<S>
impl<S: State> StringsListConstructorBuilder<S>
Sourcepub fn build(self) -> StringsListConstructorwhere
S: IsComplete,
pub fn build(self) -> StringsListConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn continue(
self,
value: ContinueNode,
) -> StringsListConstructorBuilder<SetContinue<S>>where
S::Continue: IsUnset,
pub fn continue(
self,
value: ContinueNode,
) -> StringsListConstructorBuilder<SetContinue<S>>where
S::Continue: IsUnset,
Required.
Sourcepub fn string(
self,
value: StringNode,
) -> StringsListConstructorBuilder<SetString<S>>where
S::String: IsUnset,
pub fn string(
self,
value: StringNode,
) -> StringsListConstructorBuilder<SetString<S>>where
S::String: IsUnset,
Required.
Sourcepub fn strings_list(
self,
value: StringsListNode,
) -> StringsListConstructorBuilder<SetStringsList<S>>where
S::StringsList: IsUnset,
pub fn strings_list(
self,
value: StringsListNode,
) -> StringsListConstructorBuilder<SetStringsList<S>>where
S::StringsList: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for StringsListConstructorBuilder<S>
impl<S> RefUnwindSafe for StringsListConstructorBuilder<S>
impl<S> Send for StringsListConstructorBuilder<S>
impl<S> Sync for StringsListConstructorBuilder<S>
impl<S> Unpin for StringsListConstructorBuilder<S>
impl<S> UnwindSafe for StringsListConstructorBuilder<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