pub struct DelimCode1ListConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> DelimCode1ListConstructorBuilder<S>
impl<S: State> DelimCode1ListConstructorBuilder<S>
Sourcepub fn build(self) -> DelimCode1ListConstructorwhere
S: IsComplete,
pub fn build(self) -> DelimCode1ListConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn delim_code_1_list_group(
self,
value: DelimCode1ListGroupNode,
) -> DelimCode1ListConstructorBuilder<SetDelimCode1ListGroup<S>>where
S::DelimCode1ListGroup: IsUnset,
pub fn delim_code_1_list_group(
self,
value: DelimCode1ListGroupNode,
) -> DelimCode1ListConstructorBuilder<SetDelimCode1ListGroup<S>>where
S::DelimCode1ListGroup: IsUnset,
Required.
Sourcepub fn delim_code_1_list(
self,
value: DelimCode1ListNode,
) -> DelimCode1ListConstructorBuilder<SetDelimCode1List<S>>where
S::DelimCode1List: IsUnset,
pub fn delim_code_1_list(
self,
value: DelimCode1ListNode,
) -> DelimCode1ListConstructorBuilder<SetDelimCode1List<S>>where
S::DelimCode1List: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for DelimCode1ListConstructorBuilder<S>
impl<S> RefUnwindSafe for DelimCode1ListConstructorBuilder<S>
impl<S> Send for DelimCode1ListConstructorBuilder<S>
impl<S> Sync for DelimCode1ListConstructorBuilder<S>
impl<S> Unpin for DelimCode1ListConstructorBuilder<S>
impl<S> UnwindSafe for DelimCode1ListConstructorBuilder<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