pub struct AsyncTask {
pub location: AsyncTaskLocation,
pub retry_after: Option<Duration>,
}Expand description
Outcome of a mutating Redfish operation that can complete asynchronously.
Fields§
§location: AsyncTaskLocationLocation to use for polling completion.
retry_after: Option<Duration>Recommended duration to wait before polling again.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AsyncTask
impl RefUnwindSafe for AsyncTask
impl Send for AsyncTask
impl Sync for AsyncTask
impl Unpin for AsyncTask
impl UnsafeUnpin for AsyncTask
impl UnwindSafe for AsyncTask
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