Enum dioxus_query::QueryResult

source ยท
pub enum QueryResult<T, E> {
    Ok(T),
    Err(E),
    Loading(Option<T>),
}

Variantsยง

ยง

Ok(T)

Contains a successful state

ยง

Err(E)

Contains an errored state

ยง

Loading(Option<T>)

Contains a loading state that may or not have a cached result

Implementationsยง

sourceยง

impl<T, E> QueryResult<T, E>

source

pub fn is_ok(&self) -> bool

source

pub fn is_err(&self) -> bool

source

pub fn is_loading(&self) -> bool

Trait Implementationsยง

sourceยง

impl<T: Clone, E: Clone> Clone for QueryResult<T, E>

sourceยง

fn clone(&self) -> QueryResult<T, E>

Returns a copy of the value. Read more
1.0.0 ยท sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
sourceยง

impl<T: Debug, E: Debug> Debug for QueryResult<T, E>

sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
sourceยง

impl<T, E> Default for QueryResult<T, E>

sourceยง

fn default() -> Self

Returns the โ€œdefault valueโ€ for a type. Read more
sourceยง

impl<T, E> From<Result<T, E>> for QueryResult<T, E>

sourceยง

fn from(value: Result<T, E>) -> Self

Converts to this type from the input type.
sourceยง

impl<T: PartialEq, E: PartialEq> PartialEq<QueryResult<T, E>> for QueryResult<T, E>

sourceยง

fn eq(&self, other: &QueryResult<T, E>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 ยท sourceยง

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
sourceยง

impl<T, E> StructuralPartialEq for QueryResult<T, E>

Auto Trait Implementationsยง

ยง

impl<T, E> RefUnwindSafe for QueryResult<T, E>where E: RefUnwindSafe, T: RefUnwindSafe,

ยง

impl<T, E> Send for QueryResult<T, E>where E: Send, T: Send,

ยง

impl<T, E> Sync for QueryResult<T, E>where E: Sync, T: Sync,

ยง

impl<T, E> Unpin for QueryResult<T, E>where E: Unpin, T: Unpin,

ยง

impl<T, E> UnwindSafe for QueryResult<T, E>where E: UnwindSafe, T: UnwindSafe,

Blanket Implementationsยง

sourceยง

impl<T> Any for Twhere T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for Twhere T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for Twhere T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T, U> Into<U> for Twhere U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T> ToOwned for Twhere T: Clone,

ยง

type Owned = T

The resulting type after obtaining ownership.
sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
sourceยง

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

ยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

ยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
sourceยง

impl<T> Dep for Twhere T: 'static + PartialEq<T> + Clone,