pub trait URIRequestExt: IsA<URIRequest> + Sealed + 'static {
    // Provided methods
    fn http_headers(&self) -> Option<MessageHeaders> { ... }
    fn http_method(&self) -> Option<GString> { ... }
    fn uri(&self) -> Option<GString> { ... }
    fn set_uri(&self, uri: &str) { ... }
    fn connect_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn http_headers(&self) -> Option<MessageHeaders>

source

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

Available on crate feature v2_12 only.
source

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

source

fn set_uri(&self, uri: &str)

source

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

Object Safety§

This trait is not object safe.

Implementors§