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