pub enum BackgroundFetchResult {
NONE,
SUCCESS,
FAILURE,
}Variants§
Trait Implementations§
Source§impl Clone for BackgroundFetchResult
impl Clone for BackgroundFetchResult
Source§fn clone(&self) -> BackgroundFetchResult
fn clone(&self) -> BackgroundFetchResult
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 BackgroundFetchResult
impl Debug for BackgroundFetchResult
Source§impl From<&BackgroundFetchResult> for Any
impl From<&BackgroundFetchResult> for Any
Source§fn from(s: &BackgroundFetchResult) -> Any
fn from(s: &BackgroundFetchResult) -> Any
Converts to this type from the input type.
Source§impl From<BackgroundFetchResult> for Any
impl From<BackgroundFetchResult> for Any
Source§fn from(s: BackgroundFetchResult) -> Any
fn from(s: BackgroundFetchResult) -> Any
Converts to this type from the input type.
Source§impl FromVal for BackgroundFetchResult
impl FromVal for BackgroundFetchResult
Source§impl PartialEq for BackgroundFetchResult
impl PartialEq for BackgroundFetchResult
Source§impl PartialOrd for BackgroundFetchResult
impl PartialOrd for BackgroundFetchResult
impl Copy for BackgroundFetchResult
impl StructuralPartialEq for BackgroundFetchResult
Auto Trait Implementations§
impl Freeze for BackgroundFetchResult
impl RefUnwindSafe for BackgroundFetchResult
impl Send for BackgroundFetchResult
impl Sync for BackgroundFetchResult
impl Unpin for BackgroundFetchResult
impl UnwindSafe for BackgroundFetchResult
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