pub struct Middleware {
pub name: String,
pub options: Option<JsValue>,
pub fn: Arc<dyn Fn(MiddlewareState) -> Promisable<MiddlewareReturn>>,
}
Fields§
§name: String
§options: Option<JsValue>
§fn: Arc<dyn Fn(MiddlewareState) -> Promisable<MiddlewareReturn>>
Trait Implementations§
Source§impl Clone for Middleware
impl Clone for Middleware
Source§fn clone(&self) -> Middleware
fn clone(&self) -> Middleware
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl TryFrom<JsValue> for Middleware
impl TryFrom<JsValue> for Middleware
Auto Trait Implementations§
impl Freeze for Middleware
impl !RefUnwindSafe for Middleware
impl !Send for Middleware
impl !Sync for Middleware
impl Unpin for Middleware
impl !UnwindSafe for Middleware
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