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