pub struct RecoverOut {
pub id: String,
pub status: BackgroundTaskStatus,
pub task: BackgroundTaskType,
}
Fields§
§id: String
§status: BackgroundTaskStatus
§task: BackgroundTaskType
Implementations§
Source§impl RecoverOut
impl RecoverOut
pub fn new( id: String, status: BackgroundTaskStatus, task: BackgroundTaskType, ) -> RecoverOut
Trait Implementations§
Source§impl Clone for RecoverOut
impl Clone for RecoverOut
Source§fn clone(&self) -> RecoverOut
fn clone(&self) -> RecoverOut
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 RecoverOut
impl Debug for RecoverOut
Source§impl Default for RecoverOut
impl Default for RecoverOut
Source§fn default() -> RecoverOut
fn default() -> RecoverOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecoverOut
impl<'de> Deserialize<'de> for RecoverOut
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 RecoverOut
impl PartialEq for RecoverOut
Source§impl Serialize for RecoverOut
impl Serialize for RecoverOut
impl StructuralPartialEq for RecoverOut
Auto Trait Implementations§
impl Freeze for RecoverOut
impl RefUnwindSafe for RecoverOut
impl Send for RecoverOut
impl Sync for RecoverOut
impl Unpin for RecoverOut
impl UnwindSafe for RecoverOut
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