Enum ate::meta::ReadOption[][src]

pub enum ReadOption {
    Inherit,
    Everyone,
    Specific(Hash),
}

Determines if the event record will be restricted so that only a specific set of users can read the data. If it is limited to a specific set of users they must all possess the encryption key in their session when accessing these data records of which the hash of the encryption key must match this record.

Variants

Inherit
Everyone
Specific(Hash)

Trait Implementations

impl Clone for ReadOption[src]

impl Debug for ReadOption[src]

impl Default for ReadOption[src]

impl<'de> Deserialize<'de> for ReadOption[src]

impl Eq for ReadOption[src]

impl Ord for ReadOption[src]

impl PartialEq<ReadOption> for ReadOption[src]

impl PartialOrd<ReadOption> for ReadOption[src]

impl Serialize for ReadOption[src]

impl StructuralEq for ReadOption[src]

impl StructuralPartialEq for ReadOption[src]

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,