Trait ruast::Assignable

source ·
pub trait Assignable {
    // Required method
    fn assign(self, rhs: impl Into<Expr>) -> Assign;
}

Required Methods§

source

fn assign(self, rhs: impl Into<Expr>) -> Assign

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<E: Into<Expr>> Assignable for E