pub struct FlatBodyListConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> FlatBodyListConstructorBuilder<S>
impl<S: State> FlatBodyListConstructorBuilder<S>
Sourcepub fn build(self) -> FlatBodyListConstructorwhere
S: IsComplete,
pub fn build(self) -> FlatBodyListConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn binding(
self,
value: BindingNode,
) -> FlatBodyListConstructorBuilder<SetBinding<S>>where
S::Binding: IsUnset,
pub fn binding(
self,
value: BindingNode,
) -> FlatBodyListConstructorBuilder<SetBinding<S>>where
S::Binding: IsUnset,
Required.
Sourcepub fn flat_body_list(
self,
value: FlatBodyListNode,
) -> FlatBodyListConstructorBuilder<SetFlatBodyList<S>>where
S::FlatBodyList: IsUnset,
pub fn flat_body_list(
self,
value: FlatBodyListNode,
) -> FlatBodyListConstructorBuilder<SetFlatBodyList<S>>where
S::FlatBodyList: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for FlatBodyListConstructorBuilder<S>
impl<S> RefUnwindSafe for FlatBodyListConstructorBuilder<S>
impl<S> Send for FlatBodyListConstructorBuilder<S>
impl<S> Sync for FlatBodyListConstructorBuilder<S>
impl<S> Unpin for FlatBodyListConstructorBuilder<S>
impl<S> UnwindSafe for FlatBodyListConstructorBuilder<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