pub struct Mime {
pub type_: String,
pub subtype: String,
pub parameters: Vec<(String, String)>,
}
Expand description
Fields§
§type_: String
§subtype: String
§parameters: Vec<(String, String)>
(name, value)
Implementations§
Trait Implementations§
impl Eq for Mime
impl StructuralPartialEq for Mime
Auto Trait Implementations§
impl Freeze for Mime
impl RefUnwindSafe for Mime
impl Send for Mime
impl Sync for Mime
impl Unpin for Mime
impl UnwindSafe for Mime
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