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§
fn http_headers(&self) -> Option<MessageHeaders>
fn http_method(&self) -> Option<GString>
Available on crate feature
v2_12
only.fn uri(&self) -> Option<GString>
fn set_uri(&self, uri: &str)
fn connect_uri_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.