pub struct RequestWithPriority<S>where
S: QueueStrategy + Clone + 'static,{ /* private fields */ }Expand description
Request for the resource with priority.
Trait Implementations§
Source§impl<S> Clone for RequestWithPriority<S>
impl<S> Clone for RequestWithPriority<S>
Source§fn clone(&self) -> RequestWithPriority<S>
fn clone(&self) -> RequestWithPriority<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<S> Process for RequestWithPriority<S>
impl<S> Process for RequestWithPriority<S>
Source§fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
Bind the current computation with its continuation within the resulting computation.
Source§fn map<B, F>(self, f: F) -> Map<Self, B, F>
fn map<B, F>(self, f: F) -> Map<Self, B, F>
Map the current computation using the specified transform.
Source§fn zip<U>(self, other: U) -> Zip<Self, U>
fn zip<U>(self, other: U) -> Zip<Self, U>
Zip the current computation with another one within the resulting computation.
Source§fn finally<U>(self, finalization: U) -> Finally<Self, U>
fn finally<U>(self, finalization: U) -> Finally<Self, U>
Finalize the current computation regardless of canceling it or not.
Source§fn run_using_id(self, pid: Grc<ProcessId>) -> Run<Self>
fn run_using_id(self, pid: Grc<ProcessId>) -> Run<Self>
Run the
Process computation using the specified process identifier.Source§fn into_boxed(self) -> ProcessBox<Self::Item>
fn into_boxed(self) -> ProcessBox<Self::Item>
Convert into a boxed value.
Auto Trait Implementations§
impl<S> !RefUnwindSafe for RequestWithPriority<S>
impl<S> !Send for RequestWithPriority<S>
impl<S> !Sync for RequestWithPriority<S>
impl<S> !UnwindSafe for RequestWithPriority<S>
impl<S> Freeze for RequestWithPriority<S>
impl<S> Unpin for RequestWithPriority<S>
impl<S> UnsafeUnpin for RequestWithPriority<S>
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