Trait libhelium::prelude::DatePickerExt

source ·
pub trait DatePickerExt: IsA<DatePicker> + Sealed + 'static {
    // Provided methods
    fn format(&self) -> GString { ... }
    fn date(&self) -> DateTime { ... }
    fn set_date(&self, value: &DateTime) { ... }
    fn connect_date_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all DatePicker methods.

§Implementors

DatePicker

Provided Methods§

source

fn format(&self) -> GString

source

fn date(&self) -> DateTime

source

fn set_date(&self, value: &DateTime)

source

fn connect_date_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O: IsA<DatePicker>> DatePickerExt for O