Enum reqwest::header::DispositionType
[−]
[src]
pub enum DispositionType {
Inline,
Attachment,
Ext(String),
}The implied disposition of the content of the HTTP body
Variants
InlineInline implies default processing
AttachmentAttachment implies that the recipient should prompt the user to save the response locally, rather than process it normally (as per its media type).
Ext(String)Extension type. Should be handled by recipients the same way as Attachment
Trait Implementations
impl Debug for DispositionType[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.