pub struct TableAliasPlan {
pub name: String,
pub columns: Vec<String>,
}Fields§
§name: String§columns: Vec<String>Trait Implementations§
Source§impl Clone for TableAliasPlan
impl Clone for TableAliasPlan
Source§fn clone(&self) -> TableAliasPlan
fn clone(&self) -> TableAliasPlan
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 TableAliasPlan
impl Debug for TableAliasPlan
Source§impl<'de> Deserialize<'de> for TableAliasPlan
impl<'de> Deserialize<'de> for TableAliasPlan
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 TableAliasPlan
Source§impl From<TableAlias> for TableAliasPlan
impl From<TableAlias> for TableAliasPlan
Source§fn from(alias: TableAlias) -> Self
fn from(alias: TableAlias) -> Self
Converts to this type from the input type.
Source§impl Hash for TableAliasPlan
impl Hash for TableAliasPlan
Source§impl PartialEq for TableAliasPlan
impl PartialEq for TableAliasPlan
Source§impl Serialize for TableAliasPlan
impl Serialize for TableAliasPlan
impl StructuralPartialEq for TableAliasPlan
Auto Trait Implementations§
impl Freeze for TableAliasPlan
impl RefUnwindSafe for TableAliasPlan
impl Send for TableAliasPlan
impl Sync for TableAliasPlan
impl Unpin for TableAliasPlan
impl UnsafeUnpin for TableAliasPlan
impl UnwindSafe for TableAliasPlan
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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