[][src]Trait adventure_rusoto_sqs::AsSqs

pub trait AsSqs {
    type Output: Sqs + ?Sized;
    fn as_sqs(&self) -> &Self::Output;
}

Associated Types

type Output: Sqs + ?Sized

Loading content...

Required methods

fn as_sqs(&self) -> &Self::Output

Loading content...

Implementations on Foreign Types

impl AsSqs for SqsClient[src]

impl<'_, T: ?Sized> AsSqs for &'_ T where
    T: Sqs
[src]

type Output = T

impl<T: ?Sized> AsSqs for Box<T> where
    T: Sqs
[src]

type Output = T

impl<T: ?Sized> AsSqs for Arc<T> where
    T: Sqs
[src]

type Output = T

impl<T: ?Sized> AsSqs for Rc<T> where
    T: Sqs
[src]

type Output = T

impl<P> AsSqs for Pin<P> where
    P: Deref,
    <P as Deref>::Target: Sqs
[src]

type Output = <P as Deref>::Target

Loading content...

Implementors

Loading content...