pub struct Stmt<'i> {
pub selectors: Vec<Selector<'i>>,
pub from: FromClause<'i>,
}Fields§
§selectors: Vec<Selector<'i>>§from: FromClause<'i>Implementations§
Trait Implementations§
impl<'i> Eq for Stmt<'i>
impl<'i> StructuralPartialEq for Stmt<'i>
Auto Trait Implementations§
impl<'i> Freeze for Stmt<'i>
impl<'i> RefUnwindSafe for Stmt<'i>
impl<'i> Send for Stmt<'i>
impl<'i> Sync for Stmt<'i>
impl<'i> Unpin for Stmt<'i>
impl<'i> UnwindSafe for Stmt<'i>
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