Struct s3::request::RequestImpl

source ·
pub struct RequestImpl<'a> {
    pub bucket: &'a Bucket,
    pub path: &'a str,
    pub command: Command<'a>,
    pub datetime: OffsetDateTime,
}

Fields§

§bucket: &'a Bucket§path: &'a str§command: Command<'a>§datetime: OffsetDateTime

Implementations§

source§

impl<'a> HyperRequest<'a>

source

pub fn new( bucket: &'a Bucket, path: &'a str, command: Command<'a> ) -> Result<HyperRequest<'a>, S3Error>

Trait Implementations§

source§

impl<'a> Request for HyperRequest<'a>

§

type Response = Response<Body>

§

type HeaderMap = HeaderMap<HeaderValue>

source§

fn response<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Response<Body>, S3Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source§

fn response_data<'life0, 'async_trait>( &'life0 self, etag: bool ) -> Pin<Box<dyn Future<Output = Result<ResponseData, S3Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source§

fn response_data_to_writer<'life0, 'life1, 'async_trait, T>( &'life0 self, writer: &'life1 mut T ) -> Pin<Box<dyn Future<Output = Result<u16, S3Error>> + Send + 'async_trait>>where T: 'async_trait + AsyncWrite + Send + Unpin, Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source§

fn response_data_to_stream<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<ResponseDataStream, S3Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source§

fn response_header<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(Self::HeaderMap, u16), S3Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

source§

fn datetime(&self) -> OffsetDateTime

source§

fn bucket(&self) -> Bucket

source§

fn command(&self) -> Command<'_>

source§

fn path(&self) -> String

source§

fn signing_key(&self) -> Result<Vec<u8>, S3Error>

source§

fn request_body(&self) -> Vec<u8>

source§

fn long_date(&self) -> Result<String, S3Error>

source§

fn string_to_sign(&self, request: &str) -> Result<String, S3Error>

source§

fn host_header(&self) -> String

source§

fn presigned(&self) -> Result<String, S3Error>

source§

fn presigned_authorization( &self, custom_headers: Option<&HeaderMap> ) -> Result<String, S3Error>

source§

fn presigned_canonical_request( &self, headers: &HeaderMap ) -> Result<String, S3Error>

source§

fn presigned_url_no_sig( &self, expiry: u32, custom_headers: Option<&HeaderMap>, custom_queries: Option<&HashMap<String, String>> ) -> Result<Url, S3Error>

source§

fn url(&self) -> Result<Url, S3Error>

source§

fn canonical_request(&self, headers: &HeaderMap) -> Result<String, S3Error>

source§

fn authorization(&self, headers: &HeaderMap) -> Result<String, S3Error>

source§

fn headers(&self) -> Result<HeaderMap, S3Error>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for HyperRequest<'a>

§

impl<'a> Send for HyperRequest<'a>

§

impl<'a> Sync for HyperRequest<'a>

§

impl<'a> Unpin for HyperRequest<'a>

§

impl<'a> UnwindSafe for HyperRequest<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more