Trait UriClip Ext 
Source pub trait UriClipExt: IsA<UriClip> + 'static {
    // Provided methods
    fn uri(&self) -> GString { ... }
    fn is_image(&self) -> bool { ... }
    fn is_muted(&self) -> bool { ... }
    fn set_is_image(&self, is_image: bool) { ... }
    fn set_mute(&self, mute: bool) { ... }
    fn connect_is_image_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_mute_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}Provided Methods§
Sourcefn set_is_image(&self, is_image: bool)
 
fn set_is_image(&self, is_image: bool)
fn connect_is_image_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_mute_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.