[][src]Enum clepsydra::ExtVal

pub enum ExtVal<L: Lang> {
    Initial,
    Defined(L::Val),
    Deleted,
}

An ExtVal extends the normal Lang::Val type with two extra sentinel values to represent not-yet-written or deleted data in a crate::Store.

Variants

Initial
Defined(L::Val)
Deleted

Trait Implementations

impl<L: Clone + Lang> Clone for ExtVal<L> where
    L::Val: Clone
[src]

impl<L: Debug + Lang> Debug for ExtVal<L> where
    L::Val: Debug
[src]

impl<'de, L: Lang> Deserialize<'de> for ExtVal<L>[src]

impl<L: Eq + Lang> Eq for ExtVal<L> where
    L::Val: Eq
[src]

impl<L: Hash + Lang> Hash for ExtVal<L> where
    L::Val: Hash
[src]

impl<L: Ord + Lang> Ord for ExtVal<L> where
    L::Val: Ord
[src]

impl<L: PartialEq + Lang> PartialEq<ExtVal<L>> for ExtVal<L> where
    L::Val: PartialEq
[src]

impl<L: PartialOrd + Lang> PartialOrd<ExtVal<L>> for ExtVal<L> where
    L::Val: PartialOrd
[src]

impl<L: Lang> Serialize for ExtVal<L>[src]

impl<L: Lang> StructuralEq for ExtVal<L>[src]

impl<L: Lang> StructuralPartialEq for ExtVal<L>[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for ExtVal<L> where
    <L as Lang>::Val: RefUnwindSafe
[src]

impl<L> Send for ExtVal<L> where
    <L as Lang>::Val: Send
[src]

impl<L> Sync for ExtVal<L> where
    <L as Lang>::Val: Sync
[src]

impl<L> Unpin for ExtVal<L> where
    <L as Lang>::Val: Unpin
[src]

impl<L> UnwindSafe for ExtVal<L> where
    <L as Lang>::Val: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Msg for T where
    T: Serialize + DeserializeOwned + Send + Sync + 'static, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]