pub struct PgForeignTable {
pub ftrelid: Str,
pub ftserver: Str,
pub ftoptions: Option<Vec<Str>>,
}Expand description
The DDL-only contents of pg_foreign_table
Fields§
§ftrelid: Stroid (references pg_class.oid) The OID of the pg_class entry for this foreign table
ftserver: Stroid (references pg_foreign_server.oid) OID of the foreign server for this foreign table
ftoptions: Option<Vec<Str>>text[] Foreign table options, as “keyword=value” strings
Trait Implementations§
Source§impl Clone for PgForeignTable
impl Clone for PgForeignTable
Source§fn clone(&self) -> PgForeignTable
fn clone(&self) -> PgForeignTable
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 PgForeignTable
impl Debug for PgForeignTable
Source§impl<'de> Deserialize<'de> for PgForeignTable
impl<'de> Deserialize<'de> for PgForeignTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PgForeignTable
impl PartialEq for PgForeignTable
Source§impl Serialize for PgForeignTable
impl Serialize for PgForeignTable
impl Eq for PgForeignTable
impl StructuralPartialEq for PgForeignTable
Auto Trait Implementations§
impl Freeze for PgForeignTable
impl RefUnwindSafe for PgForeignTable
impl Send for PgForeignTable
impl Sync for PgForeignTable
impl Unpin for PgForeignTable
impl UnsafeUnpin for PgForeignTable
impl UnwindSafe for PgForeignTable
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
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.