Struct sourceview5::Tag [−][src]
Implementations
impl Tag
[src]
Trait Implementations
impl Clone for Tag
[src]
impl Debug for Tag
[src]
impl Display for Tag
[src]
impl Eq for Tag
[src]
impl Hash for Tag
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl IsA<TextTag> for Tag
[src]
impl Ord for Tag
[src]
fn cmp(&self, other: &Tag) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl ParentClassIs for Tag
[src]
type Parent = TextTag
impl<T: ObjectType> PartialEq<T> for Tag
[src]
impl<T: ObjectType> PartialOrd<T> for Tag
[src]
fn partial_cmp(&self, other: &T) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl StaticType for Tag
[src]
fn static_type() -> Type
[src]
impl StructuralEq for Tag
[src]
Auto Trait Implementations
impl RefUnwindSafe for Tag
impl !Send for Tag
impl !Sync for Tag
impl Unpin for Tag
impl UnwindSafe for Tag
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<Super, Sub> CanDowncast<Sub> for Super where
Sub: IsA<Super>,
Super: IsA<Super>,
Sub: IsA<Super>,
Super: IsA<Super>,
impl<T> Cast for T where
T: ObjectType,
T: ObjectType,
pub fn upcast<T>(self) -> T where
Self: IsA<T>,
T: ObjectType,
Self: IsA<T>,
T: ObjectType,
pub fn upcast_ref<T>(&self) -> &T where
Self: IsA<T>,
T: ObjectType,
Self: IsA<T>,
T: ObjectType,
pub fn downcast<T>(self) -> Result<T, Self> where
Self: CanDowncast<T>,
T: ObjectType,
Self: CanDowncast<T>,
T: ObjectType,
pub fn downcast_ref<T>(&self) -> Option<&T> where
Self: CanDowncast<T>,
T: ObjectType,
Self: CanDowncast<T>,
T: ObjectType,
pub fn dynamic_cast<T>(self) -> Result<T, Self> where
T: ObjectType,
T: ObjectType,
pub fn dynamic_cast_ref<T>(&self) -> Option<&T> where
T: ObjectType,
T: ObjectType,
pub unsafe fn unsafe_cast<T>(self) -> T where
T: ObjectType,
T: ObjectType,
pub unsafe fn unsafe_cast_ref<T>(&self) -> &T where
T: ObjectType,
T: ObjectType,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ObjectExt for T where
T: ObjectType,
T: ObjectType,
pub fn is<U>(&self) -> bool where
U: StaticType,
U: StaticType,
pub fn get_type(&self) -> Type
pub fn get_object_class(&self) -> &Class<Object>
pub fn get_class(&self) -> &Class<T> where
T: IsClass,
T: IsClass,
pub fn get_class_of<U>(&self) -> Option<&Class<U>> where
U: IsClass,
U: IsClass,
pub fn get_interface<U>(&self) -> Option<InterfaceRef<'_, U>> where
U: IsInterface,
U: IsInterface,
pub fn set_properties(
&self,
property_values: &[(&str, &dyn ToValue)]
) -> Result<(), BoolError>
&self,
property_values: &[(&str, &dyn ToValue)]
) -> Result<(), BoolError>
pub fn set_properties_from_value(
&self,
property_values: &[(&str, Value)]
) -> Result<(), BoolError>
&self,
property_values: &[(&str, Value)]
) -> Result<(), BoolError>
pub fn set_property<'a, N, V>(
&self,
property_name: N,
value: &V
) -> Result<(), BoolError> where
V: ToValue,
N: Into<&'a str>,
&self,
property_name: N,
value: &V
) -> Result<(), BoolError> where
V: ToValue,
N: Into<&'a str>,
pub fn set_property_from_value<'a, N>(
&self,
property_name: N,
value: &Value
) -> Result<(), BoolError> where
N: Into<&'a str>,
&self,
property_name: N,
value: &Value
) -> Result<(), BoolError> where
N: Into<&'a str>,
pub fn get_property<'a, N>(&self, property_name: N) -> Result<Value, BoolError> where
N: Into<&'a str>,
N: Into<&'a str>,
pub unsafe fn set_qdata<QD>(&self, key: Quark, value: QD) where
QD: 'static,
QD: 'static,
pub unsafe fn get_qdata<QD>(&self, key: Quark) -> Option<NonNull<QD>> where
QD: 'static,
QD: 'static,
pub unsafe fn steal_qdata<QD>(&self, key: Quark) -> Option<QD> where
QD: 'static,
QD: 'static,
pub unsafe fn set_data<QD>(&self, key: &str, value: QD) where
QD: 'static,
QD: 'static,
pub unsafe fn get_data<QD>(&self, key: &str) -> Option<NonNull<QD>> where
QD: 'static,
QD: 'static,
pub unsafe fn steal_data<QD>(&self, key: &str) -> Option<QD> where
QD: 'static,
QD: 'static,
pub fn block_signal(&self, handler_id: &SignalHandlerId)
pub fn unblock_signal(&self, handler_id: &SignalHandlerId)
pub fn stop_signal_emission(&self, signal_name: &str)
pub fn disconnect(&self, handler_id: SignalHandlerId)
pub fn connect_notify<F>(&self, name: Option<&str>, f: F) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec) + Send + Sync,
F: 'static + Fn(&T, &ParamSpec) + Send + Sync,
pub fn connect_notify_local<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec),
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&T, &ParamSpec),
pub unsafe fn connect_notify_unsafe<F>(
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: Fn(&T, &ParamSpec),
&self,
name: Option<&str>,
f: F
) -> SignalHandlerId where
F: Fn(&T, &ParamSpec),
pub fn notify<'a, N>(&self, property_name: N) where
N: Into<&'a str>,
N: Into<&'a str>,
pub fn notify_by_pspec(&self, pspec: &ParamSpec)
pub fn has_property<'a, N>(&self, property_name: N, type_: Option<Type>) -> bool where
N: Into<&'a str>,
N: Into<&'a str>,
pub fn get_property_type<'a, N>(&self, property_name: N) -> Option<Type> where
N: Into<&'a str>,
N: Into<&'a str>,
pub fn find_property<'a, N>(&self, property_name: N) -> Option<ParamSpec> where
N: Into<&'a str>,
N: Into<&'a str>,
pub fn list_properties(&self) -> Vec<ParamSpec, Global>
pub fn connect<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
N: Into<&'a str>,
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
N: Into<&'a str>,
pub fn connect_id<F>(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + Send + Sync + 'static,
pub fn connect_local<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
N: Into<&'a str>,
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
N: Into<&'a str>,
pub fn connect_local_id<F>(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value> + 'static,
pub unsafe fn connect_unsafe<'a, N, F>(
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
N: Into<&'a str>,
&self,
signal_name: N,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
N: Into<&'a str>,
pub unsafe fn connect_unsafe_id<F>(
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
&self,
signal_id: SignalId,
details: Option<Quark>,
after: bool,
callback: F
) -> Result<SignalHandlerId, BoolError> where
F: Fn(&[Value]) -> Option<Value>,
pub fn emit(
&self,
signal_id: SignalId,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError>
&self,
signal_id: SignalId,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError>
pub fn emit_with_details(
&self,
signal_id: SignalId,
details: Quark,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError>
&self,
signal_id: SignalId,
details: Quark,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError>
pub fn emit_by_name<'a, N>(
&self,
signal_name: N,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError> where
N: Into<&'a str>,
&self,
signal_name: N,
args: &[&dyn ToValue]
) -> Result<Option<Value>, BoolError> where
N: Into<&'a str>,
pub fn downgrade(&self) -> WeakRef<T>
pub fn bind_property<'a, O, N, M>(
&'a self,
source_property: N,
target: &'a O,
target_property: M
) -> BindingBuilder<'a> where
O: ObjectType,
N: Into<&'a str>,
M: Into<&'a str>,
&'a self,
source_property: N,
target: &'a O,
target_property: M
) -> BindingBuilder<'a> where
O: ObjectType,
N: Into<&'a str>,
M: Into<&'a str>,
pub fn ref_count(&self) -> u32
pub fn emit_with_values(
&self,
signal_id: SignalId,
args: &[Value]
) -> Result<Option<Value>, BoolError>
&self,
signal_id: SignalId,
args: &[Value]
) -> Result<Option<Value>, BoolError>
pub fn emit_by_name_with_values<'a, N>(
&self,
signal_name: N,
args: &[Value]
) -> Result<Option<Value>, BoolError> where
N: Into<&'a str>,
&self,
signal_name: N,
args: &[Value]
) -> Result<Option<Value>, BoolError> where
N: Into<&'a str>,
pub fn emit_with_details_and_values(
&self,
signal_id: SignalId,
details: Quark,
args: &[Value]
) -> Result<Option<Value>, BoolError>
&self,
signal_id: SignalId,
details: Quark,
args: &[Value]
) -> Result<Option<Value>, BoolError>
impl<O> TextTagExt for O where
O: IsA<TextTag>,
O: IsA<TextTag>,
pub fn changed(&self, size_changed: bool)
pub fn get_priority(&self) -> i32
pub fn set_priority(&self, priority: i32)
pub fn get_property_accumulative_margin(&self) -> bool
pub fn set_property_accumulative_margin(&self, accumulative_margin: bool)
pub fn get_property_allow_breaks(&self) -> bool
pub fn set_property_allow_breaks(&self, allow_breaks: bool)
pub fn get_property_allow_breaks_set(&self) -> bool
pub fn set_property_allow_breaks_set(&self, allow_breaks_set: bool)
pub fn set_property_background(&self, background: Option<&str>)
pub fn get_property_background_full_height(&self) -> bool
pub fn set_property_background_full_height(&self, background_full_height: bool)
pub fn get_property_background_full_height_set(&self) -> bool
pub fn set_property_background_full_height_set(
&self,
background_full_height_set: bool
)
&self,
background_full_height_set: bool
)
pub fn get_property_background_rgba(&self) -> Option<RGBA>
pub fn set_property_background_rgba(&self, background_rgba: Option<&RGBA>)
pub fn get_property_background_set(&self) -> bool
pub fn set_property_background_set(&self, background_set: bool)
pub fn get_property_direction(&self) -> TextDirection
pub fn set_property_direction(&self, direction: TextDirection)
pub fn get_property_editable(&self) -> bool
pub fn set_property_editable(&self, editable: bool)
pub fn get_property_editable_set(&self) -> bool
pub fn set_property_editable_set(&self, editable_set: bool)
pub fn get_property_fallback(&self) -> bool
pub fn set_property_fallback(&self, fallback: bool)
pub fn get_property_fallback_set(&self) -> bool
pub fn set_property_fallback_set(&self, fallback_set: bool)
pub fn get_property_family(&self) -> Option<GString>
pub fn set_property_family(&self, family: Option<&str>)
pub fn get_property_family_set(&self) -> bool
pub fn set_property_family_set(&self, family_set: bool)
pub fn get_property_font(&self) -> Option<GString>
pub fn set_property_font(&self, font: Option<&str>)
pub fn get_property_font_desc(&self) -> Option<FontDescription>
pub fn set_property_font_desc(&self, font_desc: Option<&FontDescription>)
pub fn get_property_font_features(&self) -> Option<GString>
pub fn set_property_font_features(&self, font_features: Option<&str>)
pub fn get_property_font_features_set(&self) -> bool
pub fn set_property_font_features_set(&self, font_features_set: bool)
pub fn set_property_foreground(&self, foreground: Option<&str>)
pub fn get_property_foreground_rgba(&self) -> Option<RGBA>
pub fn set_property_foreground_rgba(&self, foreground_rgba: Option<&RGBA>)
pub fn get_property_foreground_set(&self) -> bool
pub fn set_property_foreground_set(&self, foreground_set: bool)
pub fn get_property_indent(&self) -> i32
pub fn set_property_indent(&self, indent: i32)
pub fn get_property_indent_set(&self) -> bool
pub fn set_property_indent_set(&self, indent_set: bool)
pub fn get_property_insert_hyphens(&self) -> bool
pub fn set_property_insert_hyphens(&self, insert_hyphens: bool)
pub fn get_property_insert_hyphens_set(&self) -> bool
pub fn set_property_insert_hyphens_set(&self, insert_hyphens_set: bool)
pub fn get_property_invisible(&self) -> bool
pub fn set_property_invisible(&self, invisible: bool)
pub fn get_property_invisible_set(&self) -> bool
pub fn set_property_invisible_set(&self, invisible_set: bool)
pub fn get_property_justification(&self) -> Justification
pub fn set_property_justification(&self, justification: Justification)
pub fn get_property_justification_set(&self) -> bool
pub fn set_property_justification_set(&self, justification_set: bool)
pub fn get_property_language(&self) -> Option<GString>
pub fn set_property_language(&self, language: Option<&str>)
pub fn get_property_language_set(&self) -> bool
pub fn set_property_language_set(&self, language_set: bool)
pub fn get_property_left_margin(&self) -> i32
pub fn set_property_left_margin(&self, left_margin: i32)
pub fn get_property_left_margin_set(&self) -> bool
pub fn set_property_left_margin_set(&self, left_margin_set: bool)
pub fn get_property_letter_spacing(&self) -> i32
pub fn set_property_letter_spacing(&self, letter_spacing: i32)
pub fn get_property_letter_spacing_set(&self) -> bool
pub fn set_property_letter_spacing_set(&self, letter_spacing_set: bool)
pub fn get_property_name(&self) -> Option<GString>
pub fn get_property_overline(&self) -> Overline
pub fn set_property_overline(&self, overline: Overline)
pub fn get_property_overline_rgba(&self) -> Option<RGBA>
pub fn set_property_overline_rgba(&self, overline_rgba: Option<&RGBA>)
pub fn get_property_overline_rgba_set(&self) -> bool
pub fn set_property_overline_rgba_set(&self, overline_rgba_set: bool)
pub fn get_property_overline_set(&self) -> bool
pub fn set_property_overline_set(&self, overline_set: bool)
pub fn set_property_paragraph_background(
&self,
paragraph_background: Option<&str>
)
&self,
paragraph_background: Option<&str>
)
pub fn get_property_paragraph_background_rgba(&self) -> Option<RGBA>
pub fn set_property_paragraph_background_rgba(
&self,
paragraph_background_rgba: Option<&RGBA>
)
&self,
paragraph_background_rgba: Option<&RGBA>
)
pub fn get_property_paragraph_background_set(&self) -> bool
pub fn set_property_paragraph_background_set(
&self,
paragraph_background_set: bool
)
&self,
paragraph_background_set: bool
)
pub fn get_property_pixels_above_lines(&self) -> i32
pub fn set_property_pixels_above_lines(&self, pixels_above_lines: i32)
pub fn get_property_pixels_above_lines_set(&self) -> bool
pub fn set_property_pixels_above_lines_set(&self, pixels_above_lines_set: bool)
pub fn get_property_pixels_below_lines(&self) -> i32
pub fn set_property_pixels_below_lines(&self, pixels_below_lines: i32)
pub fn get_property_pixels_below_lines_set(&self) -> bool
pub fn set_property_pixels_below_lines_set(&self, pixels_below_lines_set: bool)
pub fn get_property_pixels_inside_wrap(&self) -> i32
pub fn set_property_pixels_inside_wrap(&self, pixels_inside_wrap: i32)
pub fn get_property_pixels_inside_wrap_set(&self) -> bool
pub fn set_property_pixels_inside_wrap_set(&self, pixels_inside_wrap_set: bool)
pub fn get_property_right_margin(&self) -> i32
pub fn set_property_right_margin(&self, right_margin: i32)
pub fn get_property_right_margin_set(&self) -> bool
pub fn set_property_right_margin_set(&self, right_margin_set: bool)
pub fn get_property_rise(&self) -> i32
pub fn set_property_rise(&self, rise: i32)
pub fn get_property_rise_set(&self) -> bool
pub fn set_property_rise_set(&self, rise_set: bool)
pub fn get_property_scale(&self) -> f64
pub fn set_property_scale(&self, scale: f64)
pub fn get_property_scale_set(&self) -> bool
pub fn set_property_scale_set(&self, scale_set: bool)
pub fn get_property_show_spaces(&self) -> ShowFlags
pub fn set_property_show_spaces(&self, show_spaces: ShowFlags)
pub fn get_property_show_spaces_set(&self) -> bool
pub fn set_property_show_spaces_set(&self, show_spaces_set: bool)
pub fn get_property_size(&self) -> i32
pub fn set_property_size(&self, size: i32)
pub fn get_property_size_points(&self) -> f64
pub fn set_property_size_points(&self, size_points: f64)
pub fn get_property_size_set(&self) -> bool
pub fn set_property_size_set(&self, size_set: bool)
pub fn get_property_stretch(&self) -> Stretch
pub fn set_property_stretch(&self, stretch: Stretch)
pub fn get_property_stretch_set(&self) -> bool
pub fn set_property_stretch_set(&self, stretch_set: bool)
pub fn get_property_strikethrough(&self) -> bool
pub fn set_property_strikethrough(&self, strikethrough: bool)
pub fn get_property_strikethrough_rgba(&self) -> Option<RGBA>
pub fn set_property_strikethrough_rgba(&self, strikethrough_rgba: Option<&RGBA>)
pub fn get_property_strikethrough_rgba_set(&self) -> bool
pub fn set_property_strikethrough_rgba_set(&self, strikethrough_rgba_set: bool)
pub fn get_property_strikethrough_set(&self) -> bool
pub fn set_property_strikethrough_set(&self, strikethrough_set: bool)
pub fn get_property_style(&self) -> Style
pub fn set_property_style(&self, style: Style)
pub fn get_property_style_set(&self) -> bool
pub fn set_property_style_set(&self, style_set: bool)
pub fn get_property_tabs(&self) -> Option<TabArray>
pub fn set_property_tabs(&self, tabs: Option<&TabArray>)
pub fn get_property_tabs_set(&self) -> bool
pub fn set_property_tabs_set(&self, tabs_set: bool)
pub fn get_property_underline(&self) -> Underline
pub fn set_property_underline(&self, underline: Underline)
pub fn get_property_underline_rgba(&self) -> Option<RGBA>
pub fn set_property_underline_rgba(&self, underline_rgba: Option<&RGBA>)
pub fn get_property_underline_rgba_set(&self) -> bool
pub fn set_property_underline_rgba_set(&self, underline_rgba_set: bool)
pub fn get_property_underline_set(&self) -> bool
pub fn set_property_underline_set(&self, underline_set: bool)
pub fn get_property_variant(&self) -> Variant
pub fn set_property_variant(&self, variant: Variant)
pub fn get_property_variant_set(&self) -> bool
pub fn set_property_variant_set(&self, variant_set: bool)
pub fn get_property_weight(&self) -> i32
pub fn set_property_weight(&self, weight: i32)
pub fn get_property_weight_set(&self) -> bool
pub fn set_property_weight_set(&self, weight_set: bool)
pub fn get_property_wrap_mode(&self) -> WrapMode
pub fn set_property_wrap_mode(&self, wrap_mode: WrapMode)
pub fn get_property_wrap_mode_set(&self) -> bool
pub fn set_property_wrap_mode_set(&self, wrap_mode_set: bool)
pub fn connect_property_accumulative_margin_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_allow_breaks_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_allow_breaks_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_background_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_background_full_height_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_background_full_height_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_background_rgba_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_background_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_direction_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_editable_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_editable_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_fallback_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_fallback_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_family_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_family_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_font_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_font_desc_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_font_features_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_font_features_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_foreground_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_foreground_rgba_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_foreground_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_indent_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_indent_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_insert_hyphens_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_insert_hyphens_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_invisible_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_invisible_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_justification_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_justification_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_language_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_language_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_left_margin_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_left_margin_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_letter_spacing_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_letter_spacing_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_overline_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_overline_rgba_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_overline_rgba_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_overline_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_paragraph_background_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_paragraph_background_rgba_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_paragraph_background_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_pixels_above_lines_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_pixels_above_lines_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_pixels_below_lines_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_pixels_below_lines_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_pixels_inside_wrap_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_pixels_inside_wrap_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_right_margin_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_right_margin_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_rise_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_rise_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_scale_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_scale_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_show_spaces_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_show_spaces_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_size_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_size_points_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_size_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_stretch_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_stretch_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_strikethrough_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_strikethrough_rgba_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_strikethrough_rgba_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_strikethrough_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_style_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_style_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_tabs_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_tabs_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_underline_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_underline_rgba_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_underline_rgba_set_notify<F>(
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
&self,
f: F
) -> SignalHandlerId where
F: 'static + Fn(&O),
pub fn connect_property_underline_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_variant_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_variant_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_weight_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_weight_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_wrap_mode_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
pub fn connect_property_wrap_mode_set_notify<F>(&self, f: F) -> SignalHandlerId where
F: 'static + Fn(&O),
F: 'static + Fn(&O),
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToSendValue for T where
T: SetValue + Send + ToValue + ?Sized,
T: SetValue + Send + ToValue + ?Sized,
pub fn to_send_value(&self) -> SendValue
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T> ToValue for T where
T: SetValue + ?Sized,
T: SetValue + ?Sized,
pub fn to_value(&self) -> Value
pub fn to_value_type(&self) -> Type
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,