[][src]Struct libslide::RcExpr

pub struct RcExpr {
    pub span: Span,
    // some fields omitted
}

An reference-counted version of an expression.

NB: counted expressions are equivalent if they point to the same underlying expression, even though two counted expressions may have different spans.

Fields

span: Span

The original span of this expression from an input source code. Even though the expression may be shared, this span is distinct and serves as a backwards-mapping to where the expression originally came from.

Trait Implementations

impl AsRef<Expr> for RcExpr[src]

impl Clone for RcExpr[src]

impl Debug for RcExpr[src]

impl Deref for RcExpr[src]

type Target = Self::Inner

The resulting type after dereferencing.

impl Display for RcExpr[src]

impl Emit for RcExpr[src]

impl Eq for RcExpr[src]

impl From<RcExpr> for StmtKind[src]

impl Grammar for RcExpr[src]

impl Hash for RcExpr[src]

impl Ord for RcExpr[src]

impl PartialEq<RcExpr> for RcExpr[src]

impl PartialOrd<RcExpr> for RcExpr[src]

impl RcExpression for RcExpr[src]

type Inner = Expr

The type of expression held by Self.

Auto Trait Implementations

impl RefUnwindSafe for RcExpr

impl Send for RcExpr

impl Sync for RcExpr

impl Unpin for RcExpr

impl UnwindSafe for RcExpr

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.