pub struct PublishedTable {
pub qname: QualifiedName,
pub row_filter: Option<NormalizedExpr>,
pub columns: Option<Vec<Identifier>>,
}Expand description
A single table entry inside PublicationScope::Selective.
Fields§
§qname: QualifiedNameSchema-qualified table name.
row_filter: Option<NormalizedExpr>Optional WHERE row filter (PG 15+). Canonicalized via
NormalizedExpr.
columns: Option<Vec<Identifier>>Optional explicit column list (PG 15+). Sorted by name after canon.
None = all columns; Some(empty) is rejected by canon.
Trait Implementations§
Source§impl Clone for PublishedTable
impl Clone for PublishedTable
Source§fn clone(&self) -> PublishedTable
fn clone(&self) -> PublishedTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PublishedTable
impl Debug for PublishedTable
Source§impl<'de> Deserialize<'de> for PublishedTable
impl<'de> Deserialize<'de> for PublishedTable
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 PublishedTable
impl PartialEq for PublishedTable
Source§fn eq(&self, other: &PublishedTable) -> bool
fn eq(&self, other: &PublishedTable) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PublishedTable
impl Serialize for PublishedTable
impl Eq for PublishedTable
impl StructuralPartialEq for PublishedTable
Auto Trait Implementations§
impl Freeze for PublishedTable
impl RefUnwindSafe for PublishedTable
impl Send for PublishedTable
impl Sync for PublishedTable
impl Unpin for PublishedTable
impl UnsafeUnpin for PublishedTable
impl UnwindSafe for PublishedTable
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more