pub struct InlineCode2ConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> InlineCode2ConstructorBuilder<S>
impl<S: State> InlineCode2ConstructorBuilder<S>
Sourcepub fn build(self) -> InlineCode2Constructorwhere
S: IsComplete,
pub fn build(self) -> InlineCode2Constructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn inline_code_start_2(
self,
value: InlineCodeStart2Node,
) -> InlineCode2ConstructorBuilder<SetInlineCodeStart2<S>>where
S::InlineCodeStart2: IsUnset,
pub fn inline_code_start_2(
self,
value: InlineCodeStart2Node,
) -> InlineCode2ConstructorBuilder<SetInlineCodeStart2<S>>where
S::InlineCodeStart2: IsUnset,
Required.
Sourcepub fn inline_code_2_list(
self,
value: InlineCode2ListNode,
) -> InlineCode2ConstructorBuilder<SetInlineCode2List<S>>where
S::InlineCode2List: IsUnset,
pub fn inline_code_2_list(
self,
value: InlineCode2ListNode,
) -> InlineCode2ConstructorBuilder<SetInlineCode2List<S>>where
S::InlineCode2List: IsUnset,
Required.
Sourcepub fn inline_code_end_2(
self,
value: InlineCodeEnd2Node,
) -> InlineCode2ConstructorBuilder<SetInlineCodeEnd2<S>>where
S::InlineCodeEnd2: IsUnset,
pub fn inline_code_end_2(
self,
value: InlineCodeEnd2Node,
) -> InlineCode2ConstructorBuilder<SetInlineCodeEnd2<S>>where
S::InlineCodeEnd2: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for InlineCode2ConstructorBuilder<S>
impl<S> RefUnwindSafe for InlineCode2ConstructorBuilder<S>
impl<S> Send for InlineCode2ConstructorBuilder<S>
impl<S> Sync for InlineCode2ConstructorBuilder<S>
impl<S> Unpin for InlineCode2ConstructorBuilder<S>
impl<S> UnwindSafe for InlineCode2ConstructorBuilder<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