pub struct Pipeline<P: Parcel, M: Pipeline> {
pub middleware: M,
pub settings: Settings,
/* private fields */
}Expand description
A datagram-based packet pipeline.
Fields§
§middleware: M§settings: SettingsImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<P, M> Freeze for Pipeline<P, M>where
M: Freeze,
impl<P, M> RefUnwindSafe for Pipeline<P, M>where
M: RefUnwindSafe,
P: RefUnwindSafe,
impl<P, M> Send for Pipeline<P, M>
impl<P, M> Sync for Pipeline<P, M>
impl<P, M> Unpin for Pipeline<P, M>
impl<P, M> UnwindSafe for Pipeline<P, M>where
M: UnwindSafe,
P: 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