pub struct PgRules {
pub schemaname: Str,
pub tablename: Str,
pub rulename: Str,
pub definition: Str,
pub description: Option<Str>,
}Expand description
The DDL-only contents of pg_rules
Fields§
§schemaname: Strname (references pg_namespace.nspname) Name of schema containing table
tablename: Strname (references pg_class.relname) Name of table the rule is for
rulename: Strname (references pg_rewrite.rulename) Name of rule
definition: Strtext Rule definition (a reconstructed creation command)
description: Option<Str>text The comment from pg_description
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PgRules
impl<'de> Deserialize<'de> for PgRules
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
impl Eq for PgRules
impl StructuralPartialEq for PgRules
Auto Trait Implementations§
impl Freeze for PgRules
impl RefUnwindSafe for PgRules
impl Send for PgRules
impl Sync for PgRules
impl Unpin for PgRules
impl UnsafeUnpin for PgRules
impl UnwindSafe for PgRules
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.