pub enum PgExternReturnEntity {
    None,
    Type {
        ty: UsedTypeEntity,
    },
    SetOf {
        ty: UsedTypeEntity,
        optional: bool,
        result: bool,
    },
    Iterated {
        tys: Vec<PgExternReturnEntityIteratedItem>,
        optional: bool,
        result: bool,
    },
    Trigger,
}Variants§
Trait Implementations§
source§impl Clone for PgExternReturnEntity
 
impl Clone for PgExternReturnEntity
source§fn clone(&self) -> PgExternReturnEntity
 
fn clone(&self) -> PgExternReturnEntity
Returns a copy 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 moresource§impl Debug for PgExternReturnEntity
 
impl Debug for PgExternReturnEntity
source§impl Hash for PgExternReturnEntity
 
impl Hash for PgExternReturnEntity
source§impl Ord for PgExternReturnEntity
 
impl Ord for PgExternReturnEntity
source§fn cmp(&self, other: &PgExternReturnEntity) -> Ordering
 
fn cmp(&self, other: &PgExternReturnEntity) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<PgExternReturnEntity> for PgExternReturnEntity
 
impl PartialEq<PgExternReturnEntity> for PgExternReturnEntity
source§fn eq(&self, other: &PgExternReturnEntity) -> bool
 
fn eq(&self, other: &PgExternReturnEntity) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<PgExternReturnEntity> for PgExternReturnEntity
 
impl PartialOrd<PgExternReturnEntity> for PgExternReturnEntity
source§fn partial_cmp(&self, other: &PgExternReturnEntity) -> Option<Ordering>
 
fn partial_cmp(&self, other: &PgExternReturnEntity) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Eq for PgExternReturnEntity
impl StructuralEq for PgExternReturnEntity
impl StructuralPartialEq for PgExternReturnEntity
Auto Trait Implementations§
impl RefUnwindSafe for PgExternReturnEntity
impl Send for PgExternReturnEntity
impl Sync for PgExternReturnEntity
impl Unpin for PgExternReturnEntity
impl UnwindSafe for PgExternReturnEntity
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.