pub struct CachingCustomHandlerState<CustomModule, Msg, Query> {
pub execs: Rc<RefCell<Vec<Msg>>>,
pub queries: Rc<RefCell<Vec<Query>>>,
/* private fields */
}
Fields§
§execs: Rc<RefCell<Vec<Msg>>>
§queries: Rc<RefCell<Vec<Query>>>
Implementations§
source§impl<CustomModule, Msg, Query> CachingCustomHandlerState<CustomModule, Msg, Query>where
CustomModule: Module,
CustomModule::ExecT: Clone + 'static,
CustomModule::QueryT: CustomQuery + 'static,
impl<CustomModule, Msg, Query> CachingCustomHandlerState<CustomModule, Msg, Query>where CustomModule: Module, CustomModule::ExecT: Clone + 'static, CustomModule::QueryT: CustomQuery + 'static,
Trait Implementations§
Auto Trait Implementations§
impl<CustomModule, Msg, Query> !RefUnwindSafe for CachingCustomHandlerState<CustomModule, Msg, Query>
impl<CustomModule, Msg, Query> !Send for CachingCustomHandlerState<CustomModule, Msg, Query>
impl<CustomModule, Msg, Query> !Sync for CachingCustomHandlerState<CustomModule, Msg, Query>
impl<CustomModule, Msg, Query> Unpin for CachingCustomHandlerState<CustomModule, Msg, Query>where CustomModule: Unpin,
impl<CustomModule, Msg, Query> !UnwindSafe for CachingCustomHandlerState<CustomModule, Msg, Query>
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