pub struct ConfigureEvent { /* private fields */ }
Implementations§
Source§impl ConfigureEvent
impl ConfigureEvent
pub fn child(&self) -> Window
pub fn x(&self) -> i32
pub fn y(&self) -> i32
pub fn width(&self) -> u32
pub fn height(&self) -> u32
pub fn border_width(&self) -> u32
pub fn above(&self) -> Window
pub fn override_redirect(&self) -> Bool
pub fn new( kind: EventType, serial: c_ulong, display: &dyn GenericDisplay, sender_window: &Window, fse: bool, child: Window, x: i32, y: i32, width: u32, height: u32, border_width: u32, above: Window, override_redirect: Bool, ) -> Result<Self, FlutterbugError>
Trait Implementations§
Source§impl Clone for ConfigureEvent
impl Clone for ConfigureEvent
Source§fn clone(&self) -> ConfigureEvent
fn clone(&self) -> ConfigureEvent
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConfigureEvent
impl Debug for ConfigureEvent
Source§impl DerivesAnEvent for ConfigureEvent
impl DerivesAnEvent for ConfigureEvent
Source§impl DerivesEvent<XConfigureEvent> for ConfigureEvent
impl DerivesEvent<XConfigureEvent> for ConfigureEvent
Source§fn from_evstruct(ev: XConfigureEvent) -> Result<Self, FlutterbugError>
fn from_evstruct(ev: XConfigureEvent) -> Result<Self, FlutterbugError>
Derive this item from the native struct.
Source§fn inner(&self) -> Result<XConfigureEvent, FlutterbugError>
fn inner(&self) -> Result<XConfigureEvent, FlutterbugError>
Get the raw inner event.
Auto Trait Implementations§
impl Freeze for ConfigureEvent
impl RefUnwindSafe for ConfigureEvent
impl !Send for ConfigureEvent
impl !Sync for ConfigureEvent
impl Unpin for ConfigureEvent
impl UnwindSafe for ConfigureEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more