pub struct ExistsColumn { /* private fields */ }Available on crate feature
backend-postgres only.Expand description
EXISTS column definition in a JSON_TABLE COLUMNS clause.
Implementationsยง
Sourceยงimpl ExistsColumn
impl ExistsColumn
pub fn new( name: impl Into<Cow<'static, str>>, column_type: impl Into<TypeRef>, ) -> Self
pub fn path(self, path: impl Into<Cow<'static, str>>) -> Self
pub fn error_on_error(self) -> Self
pub fn true_on_error(self) -> Self
pub fn false_on_error(self) -> Self
pub fn unknown_on_error(self) -> Self
Trait Implementationsยง
Sourceยงimpl Clone for ExistsColumn
impl Clone for ExistsColumn
Sourceยงfn clone(&self) -> ExistsColumn
fn clone(&self) -> ExistsColumn
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) ยท 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 Freeze for ExistsColumn
impl RefUnwindSafe for ExistsColumn
impl Send for ExistsColumn
impl Sync for ExistsColumn
impl Unpin for ExistsColumn
impl UnsafeUnpin for ExistsColumn
impl UnwindSafe for ExistsColumn
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