pub struct TypeContext {
pub bindings: HashMap<String, BoundVariable>,
pub aliases: HashMap<String, ResolvedType>,
pub traversals: Vec<ResolvedTraversal>,
}Fields§
§bindings: HashMap<String, BoundVariable>§aliases: HashMap<String, ResolvedType>§traversals: Vec<ResolvedTraversal>Trait Implementations§
Source§impl Clone for TypeContext
impl Clone for TypeContext
Source§fn clone(&self) -> TypeContext
fn clone(&self) -> TypeContext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TypeContext
impl RefUnwindSafe for TypeContext
impl Send for TypeContext
impl Sync for TypeContext
impl Unpin for TypeContext
impl UnsafeUnpin for TypeContext
impl UnwindSafe for TypeContext
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