pub trait URIRequestExt: 'static {
    fn http_headers(&self) -> Option<MessageHeaders>;
    fn uri(&self) -> Option<GString>;
    fn set_uri(&self, uri: &str);
    fn connect_uri_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}

Required Methods

Implementors