Struct ExistsColumnBuilder
pub struct ExistsColumnBuilder<T> { /* private fields */ }Expand description
Builder for EXISTS columns in JSON_TABLE
Implementations§
§impl<T> ExistsColumnBuilder<T>
impl<T> ExistsColumnBuilder<T>
pub fn error_on_error(self) -> Self
pub fn error_on_error(self) -> Self
Convenience method for ERROR ON ERROR
pub fn true_on_error(self) -> Self
pub fn true_on_error(self) -> Self
Convenience method for TRUE ON ERROR
pub fn false_on_error(self) -> Self
pub fn false_on_error(self) -> Self
Convenience method for FALSE ON ERROR
pub fn unknown_on_error(self) -> Self
pub fn unknown_on_error(self) -> Self
Convenience method for UNKNOWN ON ERROR
§impl ExistsColumnBuilder<Builder>
impl ExistsColumnBuilder<Builder>
pub fn build_column(self) -> Builder
pub fn build_column(self) -> Builder
Finish building this column and return to the main builder
§impl ExistsColumnBuilder<NestedPathBuilder>
impl ExistsColumnBuilder<NestedPathBuilder>
pub fn build_column(self) -> NestedPathBuilder
pub fn build_column(self) -> NestedPathBuilder
Finish building this column and return to the nested path builder
Trait Implementations§
§impl<T: Clone> Clone for ExistsColumnBuilder<T>
impl<T: Clone> Clone for ExistsColumnBuilder<T>
§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