pub struct DelimCode3ConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> DelimCode3ConstructorBuilder<S>
impl<S: State> DelimCode3ConstructorBuilder<S>
Sourcepub fn build(self) -> DelimCode3Constructorwhere
S: IsComplete,
pub fn build(self) -> DelimCode3Constructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn delim_code_start_3(
self,
value: DelimCodeStart3Node,
) -> DelimCode3ConstructorBuilder<SetDelimCodeStart3<S>>where
S::DelimCodeStart3: IsUnset,
pub fn delim_code_start_3(
self,
value: DelimCodeStart3Node,
) -> DelimCode3ConstructorBuilder<SetDelimCodeStart3<S>>where
S::DelimCodeStart3: IsUnset,
Required.
Sourcepub fn delim_code_3_list(
self,
value: DelimCode3ListNode,
) -> DelimCode3ConstructorBuilder<SetDelimCode3List<S>>where
S::DelimCode3List: IsUnset,
pub fn delim_code_3_list(
self,
value: DelimCode3ListNode,
) -> DelimCode3ConstructorBuilder<SetDelimCode3List<S>>where
S::DelimCode3List: IsUnset,
Required.
Sourcepub fn delim_code_end_3(
self,
value: DelimCodeEnd3Node,
) -> DelimCode3ConstructorBuilder<SetDelimCodeEnd3<S>>where
S::DelimCodeEnd3: IsUnset,
pub fn delim_code_end_3(
self,
value: DelimCodeEnd3Node,
) -> DelimCode3ConstructorBuilder<SetDelimCodeEnd3<S>>where
S::DelimCodeEnd3: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for DelimCode3ConstructorBuilder<S>
impl<S> RefUnwindSafe for DelimCode3ConstructorBuilder<S>
impl<S> Send for DelimCode3ConstructorBuilder<S>
impl<S> Sync for DelimCode3ConstructorBuilder<S>
impl<S> Unpin for DelimCode3ConstructorBuilder<S>
impl<S> UnwindSafe for DelimCode3ConstructorBuilder<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