pub struct ActixApp<T: Send + Sync + Clone, R: ActixResponseProcessor<T> + Send + Sync + Clone> {
pub processor: R,
pub renderer_event_rx: Receiver<RendererEvent>,
pub action_tx: Option<Sender<(String, Option<Value>)>>,
pub static_asset_routes: Vec<StaticAssetRoute>,
/* private fields */
}Fields§
§processor: R§renderer_event_rx: Receiver<RendererEvent>§action_tx: Option<Sender<(String, Option<Value>)>>§static_asset_routes: Vec<StaticAssetRoute>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T, R> Freeze for ActixApp<T, R>where
R: Freeze,
impl<T, R> RefUnwindSafe for ActixApp<T, R>where
R: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, R> Send for ActixApp<T, R>
impl<T, R> Sync for ActixApp<T, R>
impl<T, R> Unpin for ActixApp<T, R>
impl<T, R> UnwindSafe for ActixApp<T, R>where
R: UnwindSafe,
T: UnwindSafe,
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