pub struct FilterColumn {
pub schema_name: Option<String>,
pub table_name: Option<String>,
pub column: String,
}Fields§
§schema_name: Option<String>§table_name: Option<String>§column: StringTrait Implementations§
Source§impl Debug for FilterColumn
impl Debug for FilterColumn
impl Eq for FilterColumn
Source§impl From<&FilterColumn> for FilterColumn
impl From<&FilterColumn> for FilterColumn
Source§fn from(v: &FilterColumn) -> Self
fn from(v: &FilterColumn) -> Self
Converts to this type from the input type.
Source§impl Hash for FilterColumn
impl Hash for FilterColumn
Source§impl Ord for FilterColumn
impl Ord for FilterColumn
Source§fn cmp(&self, other: &FilterColumn) -> Ordering
fn cmp(&self, other: &FilterColumn) -> Ordering
1.21.0 (const: unstable) · 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 FilterColumn
impl PartialEq for FilterColumn
Source§impl PartialOrd for FilterColumn
impl PartialOrd for FilterColumn
impl StructuralPartialEq for FilterColumn
Auto Trait Implementations§
impl Freeze for FilterColumn
impl RefUnwindSafe for FilterColumn
impl Send for FilterColumn
impl Sync for FilterColumn
impl Unpin for FilterColumn
impl UnsafeUnpin for FilterColumn
impl UnwindSafe for FilterColumn
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> 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