pub struct Oid(/* private fields */);
Expand description
An object identifier in Postgres.
This is meant to be understood purely by equality. There is no sensible “order” for Oids.
§Notes
Default
shall return a sensical Oid, not necessarily a useful one.
Currently, this means that it returns the invalid Oid.
Implementations§
Source§impl Oid
impl Oid
pub const INVALID: Oid
Sourcepub const unsafe fn from_u32_unchecked(id: u32) -> Oid
👎Deprecated since 0.11.2: safely converts via SPI, use pg_sys::Oid::from(u32)
pub const unsafe fn from_u32_unchecked(id: u32) -> Oid
Generate an Oid from an arbitrary u32.
§Safety
This allows you to create an Oid that Postgres won’t recognize and throw it into Postgres. Don’t.
You should know what kind of object the identifier would imply before creating it. Postgres may sometimes call very different internal functions based on an Oid input. The extension programming interface of Postgres can reach deep, calling functions that assume the caller should be trusted like Postgres would trust itself. Because it is. Postgres tables can also change at runtime, so if an Oid is not a BuiltinOid, what Postgres does based on an Oid can change dynamically.
The existence of this unsafe
requirement to create arbitrary Oids does not, itself,
constitute a promise any Oid from Postgres or PGRX is guaranteed to be valid or sensical.
There are many existing problems in the way of this, for example:
Oid
includes the guaranteed-wrong values Oid::INVALID- Postgres may return arbitrary-seeming Oids, like BuiltinOid::UNKNOWNOID
- an Oid can arrive in Rust from a table a non-superuser can write
- PGRX mostly relies on Rust’s type system instead of the dynamic typing of Postgres, thus often deliberately does not bother to remember what OID something had.
So this function is merely a reminder. Even for extensions that work with many Oids,
it is not typical to need to create one from an arbitrary u32
. Prefer to use a constant,
or a BuiltinOid, or to obtain one from querying Postgres, or simply use Oid::INVALID.
Marking it as an unsafe fn
is an invitation to get an Oid from more trustworthy sources.
This includes Oid::INVALID, or BuiltinOid, or by directly calling into Postgres.
An unsafe fn
is not an officer of the law empowered to indict C programs for felonies,
nor cite SQL statements for misdemeanors, nor even truly stop you from foolishness.
Even “trustworthy” is meant here in a similar sense to how raw pointers can be “trustworthy”.
Often, you should still check if it’s null.
Sourcepub const fn from_u32(id: u32) -> Oid
pub const fn from_u32(id: u32) -> Oid
Creates an Oid from an arbitrary u32.
This is the same as the From::from
implementation, but available in a const
context.
Sourcepub const fn from_builtin(id: u32) -> Result<Oid, NotBuiltinOid>
pub const fn from_builtin(id: u32) -> Result<Oid, NotBuiltinOid>
Gets an Oid from a u32 if it is a valid builtin declared by Postgres
pub const fn as_u32(self) -> u32
Trait Implementations§
Source§impl<'fcx> ArgAbi<'fcx> for Oid
impl<'fcx> ArgAbi<'fcx> for Oid
Source§unsafe fn unbox_arg_unchecked(arg: Arg<'_, 'fcx>) -> Self
unsafe fn unbox_arg_unchecked(arg: Arg<'_, 'fcx>) -> Self
Source§unsafe fn unbox_nullable_arg(arg: Arg<'_, 'fcx>) -> Nullable<Self>
unsafe fn unbox_nullable_arg(arg: Arg<'_, 'fcx>) -> Nullable<Self>
Source§fn is_virtual_arg() -> bool
fn is_virtual_arg() -> bool
Source§impl BorrowDatum for Oid
impl BorrowDatum for Oid
Source§unsafe fn point_from(ptr: NonNull<u8>) -> NonNull<Self>
unsafe fn point_from(ptr: NonNull<u8>) -> NonNull<Self>
Source§unsafe fn point_from_align4(ptr: NonNull<u32>) -> NonNull<Self>
unsafe fn point_from_align4(ptr: NonNull<u32>) -> NonNull<Self>
Source§unsafe fn borrow_unchecked<'dat>(ptr: NonNull<u8>) -> &'dat Self
unsafe fn borrow_unchecked<'dat>(ptr: NonNull<u8>) -> &'dat Self
Source§impl<'de> Deserialize<'de> for Oid
impl<'de> Deserialize<'de> for Oid
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Oid, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Oid, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl From<BuiltinOid> for Oid
impl From<BuiltinOid> for Oid
Source§fn from(builtin: BuiltinOid) -> Oid
fn from(builtin: BuiltinOid) -> Oid
Source§impl FromDatum for Oid
impl FromDatum for Oid
Source§unsafe fn from_polymorphic_datum(
datum: Datum,
is_null: bool,
_: Oid,
) -> Option<Oid>
unsafe fn from_polymorphic_datum( datum: Datum, is_null: bool, _: Oid, ) -> Option<Oid>
from_datum
for instantiating polymorphic types
which require preserving the dynamic type metadata. Read moreSource§const GET_TYPOID: bool = false
const GET_TYPOID: bool = false
from_datum
?Source§unsafe fn from_datum_in_memory_context(
memory_context: PgMemoryContexts,
datum: Datum,
is_null: bool,
typoid: Oid,
) -> Option<Self>
unsafe fn from_datum_in_memory_context( memory_context: PgMemoryContexts, datum: Datum, is_null: bool, typoid: Oid, ) -> Option<Self>
FromDatum::from_datum(...)
from within that context. Read moreSource§unsafe fn try_from_datum(
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
unsafe fn try_from_datum(
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
try_from_datum
is a convenience wrapper around FromDatum::from_datum
that returns a
a Result
around an Option
, as a Datum can be null. It’s intended to be used in
situations where the caller needs to know whether the type conversion succeeded or failed. Read moreSource§unsafe fn try_from_datum_in_memory_context(
memory_context: PgMemoryContexts,
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
unsafe fn try_from_datum_in_memory_context(
memory_context: PgMemoryContexts,
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
try_from_datum
that switches to the given context to convert from DatumSource§impl Serialize for Oid
impl Serialize for Oid
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Source§impl SqlTranslatable for Oid
impl SqlTranslatable for Oid
fn argument_sql() -> Result<SqlMapping, ArgumentError>
fn return_sql() -> Result<Returns, ReturnsError>
fn type_name() -> &'static str
fn variadic() -> bool
fn optional() -> bool
fn entity() -> FunctionMetadataTypeEntity
Source§impl TryFrom<Oid> for BuiltinOid
impl TryFrom<Oid> for BuiltinOid
Source§type Error = NotBuiltinOid
type Error = NotBuiltinOid
Source§fn try_from(oid: Oid) -> Result<BuiltinOid, NotBuiltinOid>
fn try_from(oid: Oid) -> Result<BuiltinOid, NotBuiltinOid>
Source§impl UnboxDatum for Oid
impl UnboxDatum for Oid
impl Copy for Oid
impl Eq for Oid
impl StructuralPartialEq for Oid
Auto Trait Implementations§
impl Freeze for Oid
impl RefUnwindSafe for Oid
impl Send for Oid
impl Sync for Oid
impl Unpin for Oid
impl UnwindSafe for Oid
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.