Trait sourceview5::prelude::MonitorExt

source ·
pub trait MonitorExt: IsA<Monitor> + Sealed + 'static {
Show 24 methods // Provided methods fn connector(&self) -> Option<GString> { ... } fn description(&self) -> Option<GString> { ... } fn display(&self) -> Display { ... } fn geometry(&self) -> Rectangle { ... } fn height_mm(&self) -> i32 { ... } fn manufacturer(&self) -> Option<GString> { ... } fn model(&self) -> Option<GString> { ... } fn refresh_rate(&self) -> i32 { ... } fn scale_factor(&self) -> i32 { ... } fn subpixel_layout(&self) -> SubpixelLayout { ... } fn width_mm(&self) -> i32 { ... } fn is_valid(&self) -> bool { ... } fn connect_invalidate<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_connector_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_description_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_geometry_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_height_mm_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_manufacturer_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_model_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_refresh_rate_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_scale_factor_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_subpixel_layout_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_valid_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... } fn connect_width_mm_notify<F>(&self, f: F) -> SignalHandlerId where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn connector(&self) -> Option<GString>

source

fn description(&self) -> Option<GString>

source

fn display(&self) -> Display

source

fn geometry(&self) -> Rectangle

source

fn height_mm(&self) -> i32

source

fn manufacturer(&self) -> Option<GString>

source

fn model(&self) -> Option<GString>

source

fn refresh_rate(&self) -> i32

source

fn scale_factor(&self) -> i32

source

fn subpixel_layout(&self) -> SubpixelLayout

source

fn width_mm(&self) -> i32

source

fn is_valid(&self) -> bool

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> MonitorExt for O
where O: IsA<Monitor>,