gtk4::subclass::widget

Struct TemplateChild

Source
pub struct TemplateChild<T>{ /* private fields */ }

Implementations§

Source§

impl<T> TemplateChild<T>

Source

pub fn get(&self) -> T

Source

pub fn is_bound(&self) -> bool

Determines if the child has been bound. This is primarily useful for implementing the Buildable interface.

Source

pub fn try_get(&self) -> Option<T>

Returns Some(child) if the widget has been bound.

Trait Implementations§

Source§

impl<T> Debug for TemplateChild<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T> Default for TemplateChild<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T> Deref for TemplateChild<T>

Source§

type Target = T

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T> Downgrade for TemplateChild<T>

Source§

type Weak = <T as Downgrade>::Weak

Weak reference type.
Source§

fn downgrade(&self) -> Self::Weak

Downgrade to a weak reference.
Source§

impl<T> HasParamSpec for TemplateChild<T>

Source§

type ParamSpec = ParamSpecObject

Source§

type SetValue = T

Preferred value to be used as setter for the associated ParamSpec.
Source§

type BuilderFn = fn(_: &str) -> ParamSpecObjectBuilder<'_, T>

Source§

fn param_spec_builder() -> Self::BuilderFn

Source§

impl<T> PartialEq for TemplateChild<T>

Source§

fn eq(&self, other: &TemplateChild<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> Eq for TemplateChild<T>

Source§

impl<T> StructuralPartialEq for TemplateChild<T>

Auto Trait Implementations§

§

impl<T> Freeze for TemplateChild<T>

§

impl<T> RefUnwindSafe for TemplateChild<T>

§

impl<T> !Send for TemplateChild<T>

§

impl<T> !Sync for TemplateChild<T>

§

impl<T> Unpin for TemplateChild<T>

§

impl<T> UnwindSafe for TemplateChild<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Property for T
where T: HasParamSpec,

Source§

type Value = T

Source§

impl<T> PropertyGet for T
where T: HasParamSpec,

Source§

type Value = T

Source§

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.