pub struct EureConstructorBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> EureConstructorBuilder<S>
impl<S: State> EureConstructorBuilder<S>
Sourcepub fn build(self) -> EureConstructorwhere
S: IsComplete,
pub fn build(self) -> EureConstructorwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn eure_opt(
self,
value: EureOptNode,
) -> EureConstructorBuilder<SetEureOpt<S>>where
S::EureOpt: IsUnset,
pub fn eure_opt(
self,
value: EureOptNode,
) -> EureConstructorBuilder<SetEureOpt<S>>where
S::EureOpt: IsUnset,
Required.
Sourcepub fn eure_bindings(
self,
value: EureBindingsNode,
) -> EureConstructorBuilder<SetEureBindings<S>>where
S::EureBindings: IsUnset,
pub fn eure_bindings(
self,
value: EureBindingsNode,
) -> EureConstructorBuilder<SetEureBindings<S>>where
S::EureBindings: IsUnset,
Required.
Sourcepub fn eure_sections(
self,
value: EureSectionsNode,
) -> EureConstructorBuilder<SetEureSections<S>>where
S::EureSections: IsUnset,
pub fn eure_sections(
self,
value: EureSectionsNode,
) -> EureConstructorBuilder<SetEureSections<S>>where
S::EureSections: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for EureConstructorBuilder<S>
impl<S> RefUnwindSafe for EureConstructorBuilder<S>
impl<S> Send for EureConstructorBuilder<S>
impl<S> Sync for EureConstructorBuilder<S>
impl<S> Unpin for EureConstructorBuilder<S>
impl<S> UnwindSafe for EureConstructorBuilder<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