pub struct ExpressionTable {
pub table: HashMap<usize, Box<dyn Fn(ExpressionContext) -> Box<dyn Any>>>,
}
Fields§
§table: HashMap<usize, Box<dyn Fn(ExpressionContext) -> Box<dyn Any>>>
Implementations§
Source§impl ExpressionTable
impl ExpressionTable
pub fn compute_vtable_value( &self, stack: &Rc<RuntimePropertiesStackFrame>, vtable_id: usize, ) -> Box<dyn Any>
pub fn compute_eased_value<T: Clone + Interpolatable>( &self, transition_manager: Option<&mut TransitionManager<T>>, globals: &Globals, ) -> Option<T>
Auto Trait Implementations§
impl Freeze for ExpressionTable
impl !RefUnwindSafe for ExpressionTable
impl !Send for ExpressionTable
impl !Sync for ExpressionTable
impl Unpin for ExpressionTable
impl !UnwindSafe for ExpressionTable
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
Source§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
Source§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.