pub struct BindingPayload {
pub expr: String,
pub value: Rc<dyn Any>,
}Expand description
Binding payload that contains the expression string and its value.
Value of this struct is stored in the bindings map’s value of HooqMeta struct.
Fields§
§expr: String§value: Rc<dyn Any>Trait Implementations§
Auto Trait Implementations§
impl Freeze for BindingPayload
impl !RefUnwindSafe for BindingPayload
impl !Send for BindingPayload
impl !Sync for BindingPayload
impl Unpin for BindingPayload
impl !UnwindSafe for BindingPayload
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