pub trait ContentDispositionSupport<'a> {
    type O;

    fn with_content_disposition(self, content_disposition: &'a str) -> Self::O;
}

Required Associated Types

Required Methods

Implementors