pub struct TyReassignment {
pub lhs_base_name: Ident,
pub lhs_type: TypeId,
pub lhs_indices: Vec<ProjectionKind>,
pub rhs: TyExpression,
}
Fields
lhs_base_name: Ident
lhs_type: TypeId
lhs_indices: Vec<ProjectionKind>
rhs: TyExpression
Trait Implementations
sourceimpl Clone for TyReassignment
impl Clone for TyReassignment
sourcefn clone(&self) -> TyReassignment
fn clone(&self) -> TyReassignment
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TyReassignment
impl Debug for TyReassignment
sourceimpl PartialEq<TyReassignment> for TyReassignment
impl PartialEq<TyReassignment> for TyReassignment
sourcefn eq(&self, other: &TyReassignment) -> bool
fn eq(&self, other: &TyReassignment) -> bool
impl Eq for TyReassignment
impl StructuralEq for TyReassignment
impl StructuralPartialEq for TyReassignment
Auto Trait Implementations
impl RefUnwindSafe for TyReassignment
impl Send for TyReassignment
impl Sync for TyReassignment
impl Unpin for TyReassignment
impl UnwindSafe for TyReassignment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.