pub enum LiveEval {
Float64(f64),
Vec2(Vec2),
Vec3(Vec3),
Vec4(Vec4),
Int64(i64),
Bool(bool),
String(Rc<String>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LiveEval
impl RefUnwindSafe for LiveEval
impl !Send for LiveEval
impl !Sync for LiveEval
impl Unpin for LiveEval
impl UnwindSafe for LiveEval
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