[][src]Struct ironoxide::document::DocumentEncryptOpts

pub struct DocumentEncryptOpts { /* fields omitted */ }

Optional parameters that can be provided when encrypting a new document.

Methods

impl DocumentEncryptOpts[src]

pub fn new(
    id: Option<DocumentId>,
    name: Option<DocumentName>,
    grants: EitherOrBoth<ExplicitGrant, PolicyGrant>
) -> DocumentEncryptOpts
[src]

pub fn with_explicit_grants(
    id: Option<DocumentId>,
    name: Option<DocumentName>,
    grant_to_author: bool,
    grants: Vec<UserOrGroup>
) -> DocumentEncryptOpts
[src]

pub fn with_policy_grants(
    id: Option<DocumentId>,
    name: Option<DocumentName>,
    policy: PolicyGrant
) -> DocumentEncryptOpts
[src]

Trait Implementations

impl Clone for DocumentEncryptOpts[src]

impl Debug for DocumentEncryptOpts[src]

impl Default for DocumentEncryptOpts[src]

fn default() -> Self[src]

default to only sharing with the creator of the document

impl PartialEq<DocumentEncryptOpts> for DocumentEncryptOpts[src]

impl StructuralPartialEq for DocumentEncryptOpts[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> Clear for T where
    T: InitializableFromZeroed + ?Sized

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

impl<T> InitializableFromZeroed for T where
    T: Default

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.