pub struct RootTextBindingConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> RootTextBindingConstructorBuilder<S>
impl<S: State> RootTextBindingConstructorBuilder<S>
Sourcepub fn build(self) -> RootTextBindingConstructorwhere
S: IsComplete,
pub fn build(self) -> RootTextBindingConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn newline_text_start(
self,
value: NewlineTextStartNode,
) -> RootTextBindingConstructorBuilder<SetNewlineTextStart<S>>where
S::NewlineTextStart: IsUnset,
pub fn newline_text_start(
self,
value: NewlineTextStartNode,
) -> RootTextBindingConstructorBuilder<SetNewlineTextStart<S>>where
S::NewlineTextStart: IsUnset,
Required.
Sourcepub fn root_text_binding_opt(
self,
value: RootTextBindingOptNode,
) -> RootTextBindingConstructorBuilder<SetRootTextBindingOpt<S>>where
S::RootTextBindingOpt: IsUnset,
pub fn root_text_binding_opt(
self,
value: RootTextBindingOptNode,
) -> RootTextBindingConstructorBuilder<SetRootTextBindingOpt<S>>where
S::RootTextBindingOpt: IsUnset,
Required.
Sourcepub fn root_text_binding_opt_0(
self,
value: RootTextBindingOpt0Node,
) -> RootTextBindingConstructorBuilder<SetRootTextBindingOpt0<S>>where
S::RootTextBindingOpt0: IsUnset,
pub fn root_text_binding_opt_0(
self,
value: RootTextBindingOpt0Node,
) -> RootTextBindingConstructorBuilder<SetRootTextBindingOpt0<S>>where
S::RootTextBindingOpt0: IsUnset,
Required.
Sourcepub fn root_text_binding_opt_1(
self,
value: RootTextBindingOpt1Node,
) -> RootTextBindingConstructorBuilder<SetRootTextBindingOpt1<S>>where
S::RootTextBindingOpt1: IsUnset,
pub fn root_text_binding_opt_1(
self,
value: RootTextBindingOpt1Node,
) -> RootTextBindingConstructorBuilder<SetRootTextBindingOpt1<S>>where
S::RootTextBindingOpt1: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for RootTextBindingConstructorBuilder<S>
impl<S> RefUnwindSafe for RootTextBindingConstructorBuilder<S>
impl<S> Send for RootTextBindingConstructorBuilder<S>
impl<S> Sync for RootTextBindingConstructorBuilder<S>
impl<S> Unpin for RootTextBindingConstructorBuilder<S>
impl<S> UnwindSafe for RootTextBindingConstructorBuilder<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