[][src]Trait webkit2gtk_webextension::URIResponseExt

pub trait URIResponseExt: 'static {
    fn get_content_length(&self) -> u64;
fn get_mime_type(&self) -> Option<GString>;
fn get_status_code(&self) -> u32;
fn get_suggested_filename(&self) -> Option<GString>;
fn get_uri(&self) -> Option<GString>;
fn connect_property_content_length_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_mime_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_status_code_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_suggested_filename_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_content_length(&self) -> u64

fn get_mime_type(&self) -> Option<GString>

fn get_status_code(&self) -> u32

fn get_suggested_filename(&self) -> Option<GString>

fn get_uri(&self) -> Option<GString>

fn connect_property_content_length_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_mime_type_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_status_code_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_suggested_filename_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_uri_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<URIResponse>> URIResponseExt for O[src]

Loading content...