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