pub struct SectionBindingConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> SectionBindingConstructorBuilder<S>
impl<S: State> SectionBindingConstructorBuilder<S>
Sourcepub fn build(self) -> SectionBindingConstructorwhere
S: IsComplete,
pub fn build(self) -> SectionBindingConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn begin(
self,
value: BeginNode,
) -> SectionBindingConstructorBuilder<SetBegin<S>>where
S::Begin: IsUnset,
pub fn begin(
self,
value: BeginNode,
) -> SectionBindingConstructorBuilder<SetBegin<S>>where
S::Begin: IsUnset,
Required.
Sourcepub fn eure(
self,
value: EureNode,
) -> SectionBindingConstructorBuilder<SetEure<S>>where
S::Eure: IsUnset,
pub fn eure(
self,
value: EureNode,
) -> SectionBindingConstructorBuilder<SetEure<S>>where
S::Eure: IsUnset,
Required.
Sourcepub fn end(self, value: EndNode) -> SectionBindingConstructorBuilder<SetEnd<S>>where
S::End: IsUnset,
pub fn end(self, value: EndNode) -> SectionBindingConstructorBuilder<SetEnd<S>>where
S::End: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for SectionBindingConstructorBuilder<S>
impl<S> RefUnwindSafe for SectionBindingConstructorBuilder<S>
impl<S> Send for SectionBindingConstructorBuilder<S>
impl<S> Sync for SectionBindingConstructorBuilder<S>
impl<S> Unpin for SectionBindingConstructorBuilder<S>
impl<S> UnwindSafe for SectionBindingConstructorBuilder<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