Struct dumplingh::util::GITHUB_PROJECTS_ACCEPT_MIMETYPE []

pub struct GITHUB_PROJECTS_ACCEPT_MIMETYPE { /* fields omitted */ }

Custom media type for the Accept header to get projects from the GH API.

Methods from __Deref<Target = Mime>

[src]

Get the top level media type for this Mime.

Example

let mime = mime::TEXT_PLAIN;
assert_eq!(mime.type_(), "text");
assert_eq!(mime.type_(), mime::TEXT);

[src]

Get the subtype of this Mime.

Example

let mime = mime::TEXT_PLAIN;
assert_eq!(mime.subtype(), "plain");
assert_eq!(mime.subtype(), mime::PLAIN);

[src]

Get an optional +suffix for this Mime.

Example

let svg = "image/svg+xml".parse::<mime::Mime>().unwrap();
assert_eq!(svg.suffix(), Some(mime::XML));
assert_eq!(svg.suffix().unwrap(), "xml");


assert!(mime::TEXT_PLAIN.suffix().is_none());

[src]

Look up a parameter by name.

Example

let mime = mime::TEXT_PLAIN_UTF_8;
assert_eq!(mime.get_param(mime::CHARSET), Some(mime::UTF_8));
assert_eq!(mime.get_param("charset").unwrap(), "utf-8");
assert!(mime.get_param("boundary").is_none());

let mime = "multipart/form-data; boundary=ABCDEFG".parse::<mime::Mime>().unwrap();
assert_eq!(mime.get_param(mime::BOUNDARY).unwrap(), "ABCDEFG");

[src]

Returns an iterator over the parameters.

Trait Implementations

impl __Deref for GITHUB_PROJECTS_ACCEPT_MIMETYPE

The resulting type after dereferencing.

Dereferences the value.

impl LazyStatic for GITHUB_PROJECTS_ACCEPT_MIMETYPE