pub trait BorderExt {
    // Required method
    fn border_widths(&self) -> Result<BorderWidths>;
}
Expand description

An extension for Window to query border widths.

Required Methods§

source

fn border_widths(&self) -> Result<BorderWidths>

Returns the border widths of the window.

§Errors

Returns Err if querying them is unsupported.

Implementors§