pub struct DownloadParameters {
pub allow_gzip_compression: Option<bool>,
pub ignore_range: Option<bool>,
}
Expand description
Parameters specific to media downloads.
This type is not used in any activity, and only used as part of another schema.
Fields§
§allow_gzip_compression: Option<bool>
A boolean to be returned in the response to Scotty. Allows/disallows gzip encoding of the payload content when the server thinks it’s advantageous (hence, does not guarantee compression) which allows Scotty to GZip the response to the client.
ignore_range: Option<bool>
Determining whether or not Apiary should skip the inclusion of any Content-Range header on its response to Scotty.
Trait Implementations§
Source§impl Clone for DownloadParameters
impl Clone for DownloadParameters
Source§fn clone(&self) -> DownloadParameters
fn clone(&self) -> DownloadParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DownloadParameters
impl Debug for DownloadParameters
Source§impl Default for DownloadParameters
impl Default for DownloadParameters
Source§fn default() -> DownloadParameters
fn default() -> DownloadParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DownloadParameters
impl<'de> Deserialize<'de> for DownloadParameters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DownloadParameters
impl Serialize for DownloadParameters
impl Part for DownloadParameters
Auto Trait Implementations§
impl Freeze for DownloadParameters
impl RefUnwindSafe for DownloadParameters
impl Send for DownloadParameters
impl Sync for DownloadParameters
impl Unpin for DownloadParameters
impl UnwindSafe for DownloadParameters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more