Struct x11rb_protocol::protocol::xproto::ExposeEvent
source · pub struct ExposeEvent {
pub response_type: u8,
pub sequence: u16,
pub window: Window,
pub x: u16,
pub y: u16,
pub width: u16,
pub height: u16,
pub count: u16,
}
Expand description
NOT YET DOCUMENTED.
§Fields
window
- The exposed (damaged) window.x
- The X coordinate of the left-upper corner of the exposed rectangle, relative to thewindow
’s origin.y
- The Y coordinate of the left-upper corner of the exposed rectangle, relative to thewindow
’s origin.width
- The width of the exposed rectangle.height
- The height of the exposed rectangle.count
- The amount ofExpose
events following this one. Simple applications that do not want to optimize redisplay by distinguishing between subareas of its window can just ignore all Expose events with nonzero counts and perform full redisplays on events with zero counts.
Fields§
§response_type: u8
§sequence: u16
§window: Window
§x: u16
§y: u16
§width: u16
§height: u16
§count: u16
Trait Implementations§
source§impl Clone for ExposeEvent
impl Clone for ExposeEvent
source§fn clone(&self) -> ExposeEvent
fn clone(&self) -> ExposeEvent
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 ExposeEvent
impl Debug for ExposeEvent
source§impl Default for ExposeEvent
impl Default for ExposeEvent
source§fn default() -> ExposeEvent
fn default() -> ExposeEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ExposeEvent
impl<'de> Deserialize<'de> for ExposeEvent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&ExposeEvent> for [u8; 32]
impl From<&ExposeEvent> for [u8; 32]
source§fn from(input: &ExposeEvent) -> Self
fn from(input: &ExposeEvent) -> Self
Converts to this type from the input type.
source§impl From<ExposeEvent> for [u8; 32]
impl From<ExposeEvent> for [u8; 32]
source§fn from(input: ExposeEvent) -> Self
fn from(input: ExposeEvent) -> Self
Converts to this type from the input type.
source§impl Hash for ExposeEvent
impl Hash for ExposeEvent
source§impl Ord for ExposeEvent
impl Ord for ExposeEvent
source§fn cmp(&self, other: &ExposeEvent) -> Ordering
fn cmp(&self, other: &ExposeEvent) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ExposeEvent
impl PartialEq for ExposeEvent
source§fn eq(&self, other: &ExposeEvent) -> bool
fn eq(&self, other: &ExposeEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ExposeEvent
impl PartialOrd for ExposeEvent
source§fn partial_cmp(&self, other: &ExposeEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &ExposeEvent) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl Serialize for ExposeEvent
impl Serialize for ExposeEvent
source§impl Serialize for ExposeEvent
impl Serialize for ExposeEvent
source§impl TryParse for ExposeEvent
impl TryParse for ExposeEvent
impl Copy for ExposeEvent
impl Eq for ExposeEvent
impl StructuralPartialEq for ExposeEvent
Auto Trait Implementations§
impl Freeze for ExposeEvent
impl RefUnwindSafe for ExposeEvent
impl Send for ExposeEvent
impl Sync for ExposeEvent
impl Unpin for ExposeEvent
impl UnwindSafe for ExposeEvent
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
source§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
source§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<OwnedFd>
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd> ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more