pub struct ExistsColumnBuilder<T> { /* private fields */ }Available on crate feature
backend-postgres only.Expand description
Builder for EXISTS columns in JSON_TABLE
Implementationsยง
Sourceยงimpl<T> ExistsColumnBuilder<T>
impl<T> ExistsColumnBuilder<T>
Sourcepub fn error_on_error(self) -> Self
pub fn error_on_error(self) -> Self
Convenience method for ERROR ON ERROR
Sourcepub fn true_on_error(self) -> Self
pub fn true_on_error(self) -> Self
Convenience method for TRUE ON ERROR
Sourcepub fn false_on_error(self) -> Self
pub fn false_on_error(self) -> Self
Convenience method for FALSE ON ERROR
Sourcepub fn unknown_on_error(self) -> Self
pub fn unknown_on_error(self) -> Self
Convenience method for UNKNOWN ON ERROR
Sourceยงimpl ExistsColumnBuilder<Builder>
impl ExistsColumnBuilder<Builder>
Sourcepub fn build_column(self) -> Builder
pub fn build_column(self) -> Builder
Finish building this column and return to the main builder
Sourceยงimpl ExistsColumnBuilder<NestedPathBuilder>
impl ExistsColumnBuilder<NestedPathBuilder>
Sourcepub fn build_column(self) -> NestedPathBuilder
pub fn build_column(self) -> NestedPathBuilder
Finish building this column and return to the nested path builder
Trait Implementationsยง
Sourceยงimpl<T: Clone> Clone for ExistsColumnBuilder<T>
impl<T: Clone> Clone for ExistsColumnBuilder<T>
Sourceยงfn clone(&self) -> ExistsColumnBuilder<T>
fn clone(&self) -> ExistsColumnBuilder<T>
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementationsยง
impl<T> Freeze for ExistsColumnBuilder<T>where
T: Freeze,
impl<T> RefUnwindSafe for ExistsColumnBuilder<T>where
T: RefUnwindSafe,
impl<T> Send for ExistsColumnBuilder<T>where
T: Send,
impl<T> Sync for ExistsColumnBuilder<T>where
T: Sync,
impl<T> Unpin for ExistsColumnBuilder<T>where
T: Unpin,
impl<T> UnwindSafe for ExistsColumnBuilder<T>where
T: UnwindSafe,
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