pub enum ProcCtxVal {
Int(i64),
Float(f64),
Bool(bool),
Text(String),
}Expand description
Value held in the processing context.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CtxVal
impl RefUnwindSafe for CtxVal
impl Send for CtxVal
impl Sync for CtxVal
impl Unpin for CtxVal
impl UnsafeUnpin for CtxVal
impl UnwindSafe for CtxVal
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