[][src]Struct sdkms::PendingApproval

pub struct PendingApproval<O: Operation>(_, _);

Implementations

impl<O: Operation> PendingApproval<O>[src]

pub fn from_request_id(request_id: Uuid) -> Self[src]

pub fn request_id(&self) -> Uuid[src]

pub fn get(&self, sdkms: &SdkmsClient) -> Result<ApprovalRequest>[src]

pub fn status(&self, sdkms: &SdkmsClient) -> Result<ApprovalStatus>[src]

pub fn result(&self, sdkms: &SdkmsClient) -> Result<Result<O::Output>>[src]

Trait Implementations

impl<O: Operation> Clone for PendingApproval<O>[src]

impl<O: Operation> Debug for PendingApproval<O>[src]

Auto Trait Implementations

impl<O> RefUnwindSafe for PendingApproval<O> where
    O: RefUnwindSafe

impl<O> Send for PendingApproval<O> where
    O: Send

impl<O> Sync for PendingApproval<O> where
    O: Sync

impl<O> Unpin for PendingApproval<O> where
    O: Unpin

impl<O> UnwindSafe for PendingApproval<O> where
    O: UnwindSafe

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> From<T> for T[src]

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

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> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,