pub struct BackgroundJobHandle {
pub id: String,
pub job: String,
pub idempotency_key: String,
}Fields§
§id: String§job: String§idempotency_key: StringTrait Implementations§
Source§impl Clone for BackgroundJobHandle
impl Clone for BackgroundJobHandle
Source§fn clone(&self) -> BackgroundJobHandle
fn clone(&self) -> BackgroundJobHandle
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 Debug for BackgroundJobHandle
impl Debug for BackgroundJobHandle
Source§impl<'de> Deserialize<'de> for BackgroundJobHandle
impl<'de> Deserialize<'de> for BackgroundJobHandle
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 BackgroundJobHandle
impl PartialEq for BackgroundJobHandle
Source§fn eq(&self, other: &BackgroundJobHandle) -> bool
fn eq(&self, other: &BackgroundJobHandle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BackgroundJobHandle
impl Serialize for BackgroundJobHandle
impl StructuralPartialEq for BackgroundJobHandle
Auto Trait Implementations§
impl Freeze for BackgroundJobHandle
impl RefUnwindSafe for BackgroundJobHandle
impl Send for BackgroundJobHandle
impl Sync for BackgroundJobHandle
impl Unpin for BackgroundJobHandle
impl UnsafeUnpin for BackgroundJobHandle
impl UnwindSafe for BackgroundJobHandle
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