#[repr(i32)]pub enum ObjectType {
Show 51 variants
Undefined = 0,
ObjectAccessMethod = 1,
ObjectAggregate = 2,
ObjectAmop = 3,
ObjectAmproc = 4,
ObjectAttribute = 5,
ObjectCast = 6,
ObjectColumn = 7,
ObjectCollation = 8,
ObjectConversion = 9,
ObjectDatabase = 10,
ObjectDefault = 11,
ObjectDefacl = 12,
ObjectDomain = 13,
ObjectDomconstraint = 14,
ObjectEventTrigger = 15,
ObjectExtension = 16,
ObjectFdw = 17,
ObjectForeignServer = 18,
ObjectForeignTable = 19,
ObjectFunction = 20,
ObjectIndex = 21,
ObjectLanguage = 22,
ObjectLargeobject = 23,
ObjectMatview = 24,
ObjectOpclass = 25,
ObjectOperator = 26,
ObjectOpfamily = 27,
ObjectPolicy = 28,
ObjectProcedure = 29,
ObjectPublication = 30,
ObjectPublicationRel = 31,
ObjectRole = 32,
ObjectRoutine = 33,
ObjectRule = 34,
ObjectSchema = 35,
ObjectSequence = 36,
ObjectSubscription = 37,
ObjectStatisticExt = 38,
ObjectTabconstraint = 39,
ObjectTable = 40,
ObjectTablespace = 41,
ObjectTransform = 42,
ObjectTrigger = 43,
ObjectTsconfiguration = 44,
ObjectTsdictionary = 45,
ObjectTsparser = 46,
ObjectTstemplate = 47,
ObjectType = 48,
ObjectUserMapping = 49,
ObjectView = 50,
}
Variants§
Undefined = 0
ObjectAccessMethod = 1
ObjectAggregate = 2
ObjectAmop = 3
ObjectAmproc = 4
ObjectAttribute = 5
ObjectCast = 6
ObjectColumn = 7
ObjectCollation = 8
ObjectConversion = 9
ObjectDatabase = 10
ObjectDefault = 11
ObjectDefacl = 12
ObjectDomain = 13
ObjectDomconstraint = 14
ObjectEventTrigger = 15
ObjectExtension = 16
ObjectFdw = 17
ObjectForeignServer = 18
ObjectForeignTable = 19
ObjectFunction = 20
ObjectIndex = 21
ObjectLanguage = 22
ObjectLargeobject = 23
ObjectMatview = 24
ObjectOpclass = 25
ObjectOperator = 26
ObjectOpfamily = 27
ObjectPolicy = 28
ObjectProcedure = 29
ObjectPublication = 30
ObjectPublicationRel = 31
ObjectRole = 32
ObjectRoutine = 33
ObjectRule = 34
ObjectSchema = 35
ObjectSequence = 36
ObjectSubscription = 37
ObjectStatisticExt = 38
ObjectTabconstraint = 39
ObjectTable = 40
ObjectTablespace = 41
ObjectTransform = 42
ObjectTrigger = 43
ObjectTsconfiguration = 44
ObjectTsdictionary = 45
ObjectTsparser = 46
ObjectTstemplate = 47
ObjectType = 48
ObjectUserMapping = 49
ObjectView = 50
Implementations§
Trait Implementations§
Source§impl Clone for ObjectType
impl Clone for ObjectType
Source§fn clone(&self) -> ObjectType
fn clone(&self) -> ObjectType
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 moreSource§impl Debug for ObjectType
impl Debug for ObjectType
Source§impl Default for ObjectType
impl Default for ObjectType
Source§fn default() -> ObjectType
fn default() -> ObjectType
Returns the “default value” for a type. Read more
Source§impl From<ObjectType> for i32
impl From<ObjectType> for i32
Source§fn from(value: ObjectType) -> i32
fn from(value: ObjectType) -> i32
Converts to this type from the input type.
Source§impl Hash for ObjectType
impl Hash for ObjectType
Source§impl Ord for ObjectType
impl Ord for ObjectType
Source§fn cmp(&self, other: &ObjectType) -> Ordering
fn cmp(&self, other: &ObjectType) -> 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 for ObjectType
impl PartialEq for ObjectType
Source§impl PartialOrd for ObjectType
impl PartialOrd for ObjectType
impl Copy for ObjectType
impl Eq for ObjectType
impl StructuralPartialEq for ObjectType
Auto Trait Implementations§
impl Freeze for ObjectType
impl RefUnwindSafe for ObjectType
impl Send for ObjectType
impl Sync for ObjectType
impl Unpin for ObjectType
impl UnwindSafe for ObjectType
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