Struct headers::ContentDisposition
source · pub struct ContentDisposition(/* private fields */);
Expand description
A Content-Disposition
header, (re)defined in RFC6266.
The Content-Disposition response header field is used to convey additional information about how to process the response payload, and also can be used to attach additional metadata, such as the filename to use when saving the response payload locally.
§ABNF
content-disposition = "Content-Disposition" ":"
disposition-type *( ";" disposition-parm )
disposition-type = "inline" | "attachment" | disp-ext-type
; case-insensitive
disp-ext-type = token
disposition-parm = filename-parm | disp-ext-parm
filename-parm = "filename" "=" value
| "filename*" "=" ext-value
disp-ext-parm = token "=" value
| ext-token "=" ext-value
ext-token = <the characters in token, followed by "*">
§Example
use headers::ContentDisposition;
let cd = ContentDisposition::inline();
Implementations§
source§impl ContentDisposition
impl ContentDisposition
sourcepub fn inline() -> ContentDisposition
pub fn inline() -> ContentDisposition
Construct a Content-Disposition: inline
header.
sourcepub fn is_attachment(&self) -> bool
pub fn is_attachment(&self) -> bool
Check if the disposition-type is attachment
.
sourcepub fn is_form_data(&self) -> bool
pub fn is_form_data(&self) -> bool
Check if the disposition-type is form-data
.
Trait Implementations§
source§impl Clone for ContentDisposition
impl Clone for ContentDisposition
source§fn clone(&self) -> ContentDisposition
fn clone(&self) -> ContentDisposition
Returns a copy 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 ContentDisposition
impl Debug for ContentDisposition
Auto Trait Implementations§
impl !Freeze for ContentDisposition
impl RefUnwindSafe for ContentDisposition
impl Send for ContentDisposition
impl Sync for ContentDisposition
impl Unpin for ContentDisposition
impl UnwindSafe for ContentDisposition
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)