[][src]Struct ironoxide::document::DocAccessEditErr

pub struct DocAccessEditErr {
    pub user_or_group: UserOrGroup,
    pub err: String,
}

Failure to edit a document's access list.

Fields

user_or_group: UserOrGroup

User or group that was unable to have access granted/revoked.

err: String

The error encountered when attempting to grant/revoke access.

Trait Implementations

impl Clone for DocAccessEditErr[src]

impl Debug for DocAccessEditErr[src]

impl Eq for DocAccessEditErr[src]

impl From<(WithKey<UserOrGroup>, RecryptErr)> for DocAccessEditErr[src]

impl Hash for DocAccessEditErr[src]

impl PartialEq<DocAccessEditErr> for DocAccessEditErr[src]

impl StructuralEq for DocAccessEditErr[src]

impl StructuralPartialEq for DocAccessEditErr[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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>,