pub trait StreamableContentExt: 'static {
    fn get_mime_type(&self, i: i32) -> Option<GString>;
    fn get_n_mime_types(&self) -> i32;
    fn get_uri(&self, mime_type: &str) -> Option<GString>;
}

Required Methods

Implementors