[][src]Enum makepad_render::ShExpr

pub enum ShExpr {
    ShId(ShId),
    ShLit(ShLit),
    ShField(ShField),
    ShIndex(ShIndex),
    ShAssign(ShAssign),
    ShAssignOp(ShAssignOp),
    ShBinary(ShBinary),
    ShUnary(ShUnary),
    ShParen(ShParen),
    ShBlock(ShBlock),
    ShCall(ShCall),
    ShIf(ShIf),
    ShWhile(ShWhile),
    ShForLoop(ShForLoop),
    ShReturn(ShReturn),
    ShBreak(ShBreak),
    ShContinue(ShContinue),
}

Variants

ShId(ShId)
ShLit(ShLit)
ShField(ShField)
ShIndex(ShIndex)
ShAssign(ShAssign)
ShAssignOp(ShAssignOp)
ShBinary(ShBinary)
ShUnary(ShUnary)
ShParen(ShParen)
ShBlock(ShBlock)
ShCall(ShCall)
ShIf(ShIf)
ShWhile(ShWhile)
ShForLoop(ShForLoop)
ShReturn(ShReturn)
ShBreak(ShBreak)
ShContinue(ShContinue)

Methods

impl ShExpr[src]

pub fn sl(&self, slcx: &mut SlCx) -> Result<Sl, SlErr>[src]

Trait Implementations

impl Clone for ShExpr[src]

impl Hash for ShExpr[src]

impl PartialEq<ShExpr> for ShExpr[src]

impl StructuralPartialEq for ShExpr[src]

Auto Trait Implementations

impl RefUnwindSafe for ShExpr

impl Send for ShExpr

impl Sync for ShExpr

impl Unpin for ShExpr

impl UnwindSafe for ShExpr

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, 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.