pub struct FromClause<'i> {
pub inner: FxHashMap<String, FromItem<'i>>,
}Fields§
§inner: FxHashMap<String, FromItem<'i>>Trait Implementations§
Source§impl<'i> Debug for FromClause<'i>
impl<'i> Debug for FromClause<'i>
Source§impl<'i> Default for FromClause<'i>
impl<'i> Default for FromClause<'i>
Source§fn default() -> FromClause<'i>
fn default() -> FromClause<'i>
Returns the “default value” for a type. Read more
Source§impl<'i> PartialEq for FromClause<'i>
impl<'i> PartialEq for FromClause<'i>
impl<'i> Eq for FromClause<'i>
impl<'i> StructuralPartialEq for FromClause<'i>
Auto Trait Implementations§
impl<'i> Freeze for FromClause<'i>
impl<'i> RefUnwindSafe for FromClause<'i>
impl<'i> Send for FromClause<'i>
impl<'i> Sync for FromClause<'i>
impl<'i> Unpin for FromClause<'i>
impl<'i> UnwindSafe for FromClause<'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