[][src]Struct azure_sdk_storage_blob::blob::requests::RenewBlobLeaseBuilder

pub struct RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
{ /* fields omitted */ }

Methods

impl<'a> RenewBlobLeaseBuilder<'a, Yes, Yes, Yes>[src]

pub fn finalize(
    self
) -> impl Future<Item = RenewBlobLeaseResponse, Error = AzureError>
[src]

Trait Implementations

impl<'a, ContainerNameSet: Clone, BlobNameSet: Clone, LeaseIdSet: Clone> Clone for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

impl<'a, ContainerNameSet: Debug, BlobNameSet: Debug, LeaseIdSet: Debug> Debug for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

impl<'a, ContainerNameSet, LeaseIdSet> BlobNameRequired<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, Yes, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> BlobNameSupport<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

type O = RenewBlobLeaseBuilder<'a, ContainerNameSet, Yes, LeaseIdSet>

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> ClientRequestIdOption<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> ClientRequestIdSupport<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

type O = RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet>

impl<'a, BlobNameSet, LeaseIdSet> ContainerNameRequired<'a> for RenewBlobLeaseBuilder<'a, Yes, BlobNameSet, LeaseIdSet> where
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> ContainerNameSupport<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

type O = RenewBlobLeaseBuilder<'a, Yes, BlobNameSet, LeaseIdSet>

impl<'a, ContainerNameSet, BlobNameSet> LeaseIdRequired<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, Yes> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign
[src]

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> LeaseIdSupport<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

type O = RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, Yes>

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> TimeoutOption for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> TimeoutSupport for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

type O = RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet>

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> ClientRequired<'a> for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    ContainerNameSet: ToAssign,
    BlobNameSet: ToAssign,
    LeaseIdSet: ToAssign
[src]

Auto Trait Implementations

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> Send for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    BlobNameSet: Send,
    ContainerNameSet: Send,
    LeaseIdSet: Send

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> Sync for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    BlobNameSet: Sync,
    ContainerNameSet: Sync,
    LeaseIdSet: Sync

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> Unpin for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> where
    BlobNameSet: Unpin,
    ContainerNameSet: Unpin,
    LeaseIdSet: Unpin

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> !UnwindSafe for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet>

impl<'a, ContainerNameSet, BlobNameSet, LeaseIdSet> !RefUnwindSafe for RenewBlobLeaseBuilder<'a, ContainerNameSet, BlobNameSet, LeaseIdSet>

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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