pub trait CellRendererProgressExt: 'static {
Show 18 methods
// Required methods
fn get_property_inverted(&self) -> bool;
fn set_property_inverted(&self, inverted: bool);
fn get_property_pulse(&self) -> i32;
fn set_property_pulse(&self, pulse: i32);
fn get_property_text(&self) -> Option<GString>;
fn set_property_text(&self, text: Option<&str>);
fn get_property_text_xalign(&self) -> f32;
fn set_property_text_xalign(&self, text_xalign: f32);
fn get_property_text_yalign(&self) -> f32;
fn set_property_text_yalign(&self, text_yalign: f32);
fn get_property_value(&self) -> i32;
fn set_property_value(&self, value: i32);
fn connect_property_inverted_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_pulse_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_text_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_text_xalign_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_text_yalign_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_value_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
Required Methods§
fn get_property_inverted(&self) -> bool
fn set_property_inverted(&self, inverted: bool)
fn get_property_pulse(&self) -> i32
fn set_property_pulse(&self, pulse: i32)
fn get_property_text(&self) -> Option<GString>
fn set_property_text(&self, text: Option<&str>)
fn get_property_text_xalign(&self) -> f32
fn set_property_text_xalign(&self, text_xalign: f32)
fn get_property_text_yalign(&self) -> f32
fn set_property_text_yalign(&self, text_yalign: f32)
fn get_property_value(&self) -> i32
fn set_property_value(&self, value: i32)
fn connect_property_inverted_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_property_pulse_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_property_text_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_property_text_xalign_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_property_text_yalign_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_property_value_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.