pub struct DelimCode2ConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> DelimCode2ConstructorBuilder<S>
impl<S: State> DelimCode2ConstructorBuilder<S>
Sourcepub fn build(self) -> DelimCode2Constructorwhere
S: IsComplete,
pub fn build(self) -> DelimCode2Constructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn delim_code_start_2(
self,
value: DelimCodeStart2Node,
) -> DelimCode2ConstructorBuilder<SetDelimCodeStart2<S>>where
S::DelimCodeStart2: IsUnset,
pub fn delim_code_start_2(
self,
value: DelimCodeStart2Node,
) -> DelimCode2ConstructorBuilder<SetDelimCodeStart2<S>>where
S::DelimCodeStart2: IsUnset,
Required.
Sourcepub fn delim_code_2_list(
self,
value: DelimCode2ListNode,
) -> DelimCode2ConstructorBuilder<SetDelimCode2List<S>>where
S::DelimCode2List: IsUnset,
pub fn delim_code_2_list(
self,
value: DelimCode2ListNode,
) -> DelimCode2ConstructorBuilder<SetDelimCode2List<S>>where
S::DelimCode2List: IsUnset,
Required.
Sourcepub fn delim_code_end_2(
self,
value: DelimCodeEnd2Node,
) -> DelimCode2ConstructorBuilder<SetDelimCodeEnd2<S>>where
S::DelimCodeEnd2: IsUnset,
pub fn delim_code_end_2(
self,
value: DelimCodeEnd2Node,
) -> DelimCode2ConstructorBuilder<SetDelimCodeEnd2<S>>where
S::DelimCodeEnd2: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for DelimCode2ConstructorBuilder<S>
impl<S> RefUnwindSafe for DelimCode2ConstructorBuilder<S>
impl<S> Send for DelimCode2ConstructorBuilder<S>
impl<S> Sync for DelimCode2ConstructorBuilder<S>
impl<S> Unpin for DelimCode2ConstructorBuilder<S>
impl<S> UnwindSafe for DelimCode2ConstructorBuilder<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