pub struct AssignExpr {
pub span: Span,
pub op: AssignOp,
pub left: PatOrExpr,
pub right: Box<Expr>,
}
Fields§
§span: Span
§op: AssignOp
§left: PatOrExpr
§right: Box<Expr>
Trait Implementations§
source§impl Clone for AssignExpr
impl Clone for AssignExpr
source§fn clone(&self) -> AssignExpr
fn clone(&self) -> AssignExpr
Returns a copy 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 moresource§impl Debug for AssignExpr
impl Debug for AssignExpr
source§impl<'de> Deserialize<'de> for AssignExpr
impl<'de> Deserialize<'de> for AssignExpr
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
source§impl EqIgnoreSpan for AssignExpr
impl EqIgnoreSpan for AssignExpr
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl From<AssignExpr> for Expr
impl From<AssignExpr> for Expr
source§fn from(v: AssignExpr) -> Self
fn from(v: AssignExpr) -> Self
Converts to this type from the input type.
source§impl From<AssignExpr> for PatOrExpr
impl From<AssignExpr> for PatOrExpr
source§fn from(src: AssignExpr) -> PatOrExpr
fn from(src: AssignExpr) -> PatOrExpr
Converts to this type from the input type.
source§impl Hash for AssignExpr
impl Hash for AssignExpr
source§impl PartialEq for AssignExpr
impl PartialEq for AssignExpr
source§impl Serialize for AssignExpr
impl Serialize for AssignExpr
source§impl Spanned for AssignExpr
impl Spanned for AssignExpr
source§impl Take for AssignExpr
impl Take for AssignExpr
impl Eq for AssignExpr
impl StructuralPartialEq for AssignExpr
Auto Trait Implementations§
impl Freeze for AssignExpr
impl RefUnwindSafe for AssignExpr
impl Send for AssignExpr
impl Sync for AssignExpr
impl Unpin for AssignExpr
impl UnwindSafe for AssignExpr
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<T> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moresource§impl<T> SpanExt for Twhere
T: Spanned,
impl<T> SpanExt for Twhere
T: Spanned,
fn is_synthesized(&self) -> bool
fn starts_on_new_line(&self, format: ListFormat) -> bool
source§fn comment_range(&self) -> Span
fn comment_range(&self) -> Span
Gets a custom text range to use when emitting comments.