pub enum CallReducerFlags {
FullUpdate,
NoSuccessNotify,
}Variants§
FullUpdate
The reducer’s caller does want to be notified about the reducer completing successfully regardless of whether the caller had subscribed to a relevant query.
Note that updates to a reducer’s caller are always sent as full updates whether subscribed to a relevant query or not. That is, the light tx mode setting does not apply to the reducer’s caller.
This is the default flag.
NoSuccessNotify
The reducer’s caller does not want to be notified about the reducer completing successfully without having subscribed to any of the relevant queries.
Trait Implementations§
Source§impl Clone for CallReducerFlags
impl Clone for CallReducerFlags
Source§fn clone(&self) -> CallReducerFlags
fn clone(&self) -> CallReducerFlags
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 Default for CallReducerFlags
impl Default for CallReducerFlags
Source§fn default() -> CallReducerFlags
fn default() -> CallReducerFlags
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallReducerFlags
impl<'de> Deserialize<'de> for CallReducerFlags
Source§fn deserialize<D>(
de: D,
) -> Result<CallReducerFlags, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
de: D,
) -> Result<CallReducerFlags, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given
deserializer.Source§impl GroundSpacetimeType for CallReducerFlags
impl GroundSpacetimeType for CallReducerFlags
Source§fn get_type() -> AlgebraicType
fn get_type() -> AlgebraicType
Returns the
AlgebraicType representation of Self.Source§impl PartialEq for CallReducerFlags
impl PartialEq for CallReducerFlags
Source§impl Serialize for CallReducerFlags
impl Serialize for CallReducerFlags
Source§fn serialize<S>(
&self,
ser: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
ser: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize
self in the data format of S using the provided serializer.Source§impl SpacetimeType for CallReducerFlags
impl SpacetimeType for CallReducerFlags
Source§fn make_type<S>(_ts: &mut S) -> AlgebraicTypewhere
S: TypespaceBuilder,
fn make_type<S>(_ts: &mut S) -> AlgebraicTypewhere
S: TypespaceBuilder,
Returns an
AlgebraicType representing the type for Self in SATS
and in the typing context in typespace. This is used by the
automatic type registration system in Rust modules. Read moreimpl Copy for CallReducerFlags
impl Eq for CallReducerFlags
impl StructuralPartialEq for CallReducerFlags
Auto Trait Implementations§
impl Freeze for CallReducerFlags
impl RefUnwindSafe for CallReducerFlags
impl Send for CallReducerFlags
impl Sync for CallReducerFlags
impl Unpin for CallReducerFlags
impl UnwindSafe for CallReducerFlags
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> Pointable for T
impl<T> Pointable for T
Source§impl<T> Satn for T
impl<T> Satn for T
Source§fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the SATN data format into the formatter
f.Source§fn fmt_psql(
&self,
f: &mut Formatter<'_>,
ty: &PsqlType<'_>,
) -> Result<(), Error>
fn fmt_psql( &self, f: &mut Formatter<'_>, ty: &PsqlType<'_>, ) -> Result<(), Error>
Formats the value using the postgres SATN(PsqlFormatter { f }, /* PsqlType */) formatter
f.Source§fn to_satn(&self) -> String
fn to_satn(&self) -> String
Formats the value using the SATN data format into the returned
String.Source§fn to_satn_pretty(&self) -> String
fn to_satn_pretty(&self) -> String
Pretty prints the value using the SATN data format into the returned
String.