pub struct LambdaApp<T: Send + Sync + Clone, R: LambdaResponseProcessor<T> + Send + Sync + Clone> {
pub processor: R,
pub static_asset_routes: Vec<StaticAssetRoute>,
/* private fields */
}Fields§
§processor: R§static_asset_routes: Vec<StaticAssetRoute>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T, R> Freeze for LambdaApp<T, R>where
R: Freeze,
impl<T, R> RefUnwindSafe for LambdaApp<T, R>where
R: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, R> Send for LambdaApp<T, R>
impl<T, R> Sync for LambdaApp<T, R>
impl<T, R> Unpin for LambdaApp<T, R>
impl<T, R> UnwindSafe for LambdaApp<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