pub struct BackgroundTaskOut {
pub data: Value,
pub id: String,
pub status: BackgroundTaskStatus,
pub task: BackgroundTaskType,
}Fields§
§data: Value§id: StringThe QueueBackgroundTask’s ID.
status: BackgroundTaskStatus§task: BackgroundTaskTypeImplementations§
Source§impl BackgroundTaskOut
impl BackgroundTaskOut
pub fn new( data: Value, id: String, status: BackgroundTaskStatus, task: BackgroundTaskType, ) -> Self
Trait Implementations§
Source§impl Clone for BackgroundTaskOut
impl Clone for BackgroundTaskOut
Source§fn clone(&self) -> BackgroundTaskOut
fn clone(&self) -> BackgroundTaskOut
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 Debug for BackgroundTaskOut
impl Debug for BackgroundTaskOut
Source§impl Default for BackgroundTaskOut
impl Default for BackgroundTaskOut
Source§fn default() -> BackgroundTaskOut
fn default() -> BackgroundTaskOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackgroundTaskOut
impl<'de> Deserialize<'de> for BackgroundTaskOut
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BackgroundTaskOut
impl PartialEq for BackgroundTaskOut
Source§impl Serialize for BackgroundTaskOut
impl Serialize for BackgroundTaskOut
impl StructuralPartialEq for BackgroundTaskOut
Auto Trait Implementations§
impl Freeze for BackgroundTaskOut
impl RefUnwindSafe for BackgroundTaskOut
impl Send for BackgroundTaskOut
impl Sync for BackgroundTaskOut
impl Unpin for BackgroundTaskOut
impl UnwindSafe for BackgroundTaskOut
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more