pub struct Chain<C>where
C: 'static,{
pub nodes: Vec<&'static Middleware<C>>,
/* private fields */
}
Fields§
§nodes: Vec<&'static Middleware<C>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for Chain<C>
impl<C> !RefUnwindSafe for Chain<C>
impl<C> Send for Chain<C>
impl<C> Sync for Chain<C>
impl<C> Unpin for Chain<C>
impl<C> !UnwindSafe for Chain<C>
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