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