pub enum NoSnapshot {}Expand description
The default S of EntityEvents<E, S>: this entity has no snapshot.
Trait Implementations§
Source§impl Clone for NoSnapshot
impl Clone for NoSnapshot
impl Copy for NoSnapshot
Source§impl Debug for NoSnapshot
impl Debug for NoSnapshot
Source§impl<'de> Deserialize<'de> for NoSnapshot
impl<'de> Deserialize<'de> for NoSnapshot
Source§fn deserialize<D: Deserializer<'de>>(_deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(_deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NoSnapshot
Source§impl EsSnapshot for NoSnapshot
impl EsSnapshot for NoSnapshot
Source§const IS_SNAPSHOT: bool = false
const IS_SNAPSHOT: bool = false
false only for NoSnapshot.const FINGERPRINT: i64 = NO_SNAPSHOT_FINGERPRINT
Source§impl<'a, E> IntoReplay<'a, E, NoSnapshot> for &'a E
impl<'a, E> IntoReplay<'a, E, NoSnapshot> for &'a E
fn into_replay(self) -> Replay<'a, E, NoSnapshot>
Source§impl PartialEq for NoSnapshot
impl PartialEq for NoSnapshot
Source§impl Serialize for NoSnapshot
impl Serialize for NoSnapshot
impl StructuralPartialEq for NoSnapshot
Auto Trait Implementations§
impl Freeze for NoSnapshot
impl RefUnwindSafe for NoSnapshot
impl Send for NoSnapshot
impl Sync for NoSnapshot
impl Unpin for NoSnapshot
impl UnsafeUnpin for NoSnapshot
impl UnwindSafe for NoSnapshot
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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<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 more