pub struct LitStr3ListConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> LitStr3ListConstructorBuilder<S>
impl<S: State> LitStr3ListConstructorBuilder<S>
Sourcepub fn build(self) -> LitStr3ListConstructorwhere
S: IsComplete,
pub fn build(self) -> LitStr3ListConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn lit_str_3_list_group(
self,
value: LitStr3ListGroupNode,
) -> LitStr3ListConstructorBuilder<SetLitStr3ListGroup<S>>where
S::LitStr3ListGroup: IsUnset,
pub fn lit_str_3_list_group(
self,
value: LitStr3ListGroupNode,
) -> LitStr3ListConstructorBuilder<SetLitStr3ListGroup<S>>where
S::LitStr3ListGroup: IsUnset,
Required.
Sourcepub fn lit_str_3_list(
self,
value: LitStr3ListNode,
) -> LitStr3ListConstructorBuilder<SetLitStr3List<S>>where
S::LitStr3List: IsUnset,
pub fn lit_str_3_list(
self,
value: LitStr3ListNode,
) -> LitStr3ListConstructorBuilder<SetLitStr3List<S>>where
S::LitStr3List: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for LitStr3ListConstructorBuilder<S>
impl<S> RefUnwindSafe for LitStr3ListConstructorBuilder<S>
impl<S> Send for LitStr3ListConstructorBuilder<S>
impl<S> Sync for LitStr3ListConstructorBuilder<S>
impl<S> Unpin for LitStr3ListConstructorBuilder<S>
impl<S> UnwindSafe for LitStr3ListConstructorBuilder<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