pub struct MutationResult<TData: 'static + Send + Sync, TError: 'static + Send + Sync, TVariables: 'static> {
pub data: Signal<Option<TData>>,
pub error: Signal<Option<TError>>,
pub is_loading: Signal<bool>,
pub is_success: Signal<bool>,
pub is_error: Signal<bool>,
pub mutate: Callback<TVariables>,
}Expand description
Result of a mutation hook
Fields§
§data: Signal<Option<TData>>The mutation data
error: Signal<Option<TError>>Error if any
is_loading: Signal<bool>Whether the mutation is loading
is_success: Signal<bool>Whether the mutation succeeded
is_error: Signal<bool>Whether the mutation failed
mutate: Callback<TVariables>Execute the mutation
Trait Implementations§
Source§impl<TData: Clone + 'static + Send + Sync, TError: Clone + 'static + Send + Sync, TVariables: Clone + 'static> Clone for MutationResult<TData, TError, TVariables>
impl<TData: Clone + 'static + Send + Sync, TError: Clone + 'static + Send + Sync, TVariables: Clone + 'static> Clone for MutationResult<TData, TError, TVariables>
Source§fn clone(&self) -> MutationResult<TData, TError, TVariables>
fn clone(&self) -> MutationResult<TData, TError, TVariables>
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 moreAuto Trait Implementations§
impl<TData, TError, TVariables> Freeze for MutationResult<TData, TError, TVariables>
impl<TData, TError, TVariables> RefUnwindSafe for MutationResult<TData, TError, TVariables>
impl<TData, TError, TVariables> Send for MutationResult<TData, TError, TVariables>
impl<TData, TError, TVariables> Sync for MutationResult<TData, TError, TVariables>
impl<TData, TError, TVariables> Unpin for MutationResult<TData, TError, TVariables>
impl<TData, TError, TVariables> UnwindSafe for MutationResult<TData, TError, TVariables>
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 moreSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.