1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use crate::dom::bindings::codegen::Bindings::MimeTypeBinding::MimeTypeMethods;
use crate::dom::bindings::reflector::Reflector;
use crate::dom::bindings::root::DomRoot;
use crate::dom::bindings::str::DOMString;
use crate::dom::plugin::Plugin;
use dom_struct::dom_struct;
#[dom_struct]
pub struct MimeType {
reflector_: Reflector,
}
impl MimeTypeMethods for MimeType {
fn Type(&self) -> DOMString {
unreachable!()
}
fn Description(&self) -> DOMString {
unreachable!()
}
fn Suffixes(&self) -> DOMString {
unreachable!()
}
fn EnabledPlugin(&self) -> DomRoot<Plugin> {
unreachable!()
}
}