Struct x11rb_protocol::protocol::xproto::FocusInEvent
source · [−]pub struct FocusInEvent {
pub response_type: u8,
pub detail: NotifyDetail,
pub sequence: u16,
pub event: Window,
pub mode: NotifyMode,
}
Expand description
NOT YET DOCUMENTED.
Fields
event
- The window on which the focus event was generated. This is the window used by the X server to report the event.detail
-mode
-
Fields
response_type: u8
detail: NotifyDetail
sequence: u16
event: Window
mode: NotifyMode
Trait Implementations
sourceimpl Clone for FocusInEvent
impl Clone for FocusInEvent
sourcefn clone(&self) -> FocusInEvent
fn clone(&self) -> FocusInEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FocusInEvent
impl Debug for FocusInEvent
sourceimpl Default for FocusInEvent
impl Default for FocusInEvent
sourcefn default() -> FocusInEvent
fn default() -> FocusInEvent
Returns the “default value” for a type. Read more
sourceimpl From<&'_ FocusInEvent> for [u8; 32]
impl From<&'_ FocusInEvent> for [u8; 32]
sourcefn from(input: &FocusInEvent) -> Self
fn from(input: &FocusInEvent) -> Self
Converts to this type from the input type.
sourceimpl From<FocusInEvent> for [u8; 32]
impl From<FocusInEvent> for [u8; 32]
sourcefn from(input: FocusInEvent) -> Self
fn from(input: FocusInEvent) -> Self
Converts to this type from the input type.
sourceimpl Hash for FocusInEvent
impl Hash for FocusInEvent
sourceimpl Ord for FocusInEvent
impl Ord for FocusInEvent
sourceimpl PartialEq<FocusInEvent> for FocusInEvent
impl PartialEq<FocusInEvent> for FocusInEvent
sourcefn eq(&self, other: &FocusInEvent) -> bool
fn eq(&self, other: &FocusInEvent) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FocusInEvent) -> bool
fn ne(&self, other: &FocusInEvent) -> bool
This method tests for !=
.
sourceimpl PartialOrd<FocusInEvent> for FocusInEvent
impl PartialOrd<FocusInEvent> for FocusInEvent
sourcefn partial_cmp(&self, other: &FocusInEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &FocusInEvent) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl TryParse for FocusInEvent
impl TryParse for FocusInEvent
impl Copy for FocusInEvent
impl Eq for FocusInEvent
impl StructuralEq for FocusInEvent
impl StructuralPartialEq for FocusInEvent
Auto Trait Implementations
impl RefUnwindSafe for FocusInEvent
impl Send for FocusInEvent
impl Sync for FocusInEvent
impl Unpin for FocusInEvent
impl UnwindSafe for FocusInEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more