#[repr(C)]pub struct XShmCompletionEvent {
    pub _type: c_int,
    pub serial: c_uint,
    pub send_event: Bool,
    pub diplay: *mut Display,
    pub drawable: *mut Drawable,
    pub major_code: c_int,
    pub minor_code: c_int,
    pub shmseg: ShmSeg,
    pub offset: c_ulong,
}Fields§
§_type: c_intof event
serial: c_uint§of last request processed by server
send_event: Booltrue if this came from a SendEvent request
diplay: *mut DisplayDisplay the event was read from
drawable: *mut Drawabledrawable of request
major_code: c_intShmReqCode
minor_code: c_intX_ShmPutImage
shmseg: ShmSegthe ShmSeg used in the request
offset: c_ulongthe offset into ShmSeg used in the request
Trait Implementations§
Source§impl Clone for XShmCompletionEvent
 
impl Clone for XShmCompletionEvent
Source§fn clone(&self) -> XShmCompletionEvent
 
fn clone(&self) -> XShmCompletionEvent
Returns a duplicate 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 XShmCompletionEvent
 
impl Debug for XShmCompletionEvent
Source§impl PartialEq for XShmCompletionEvent
 
impl PartialEq for XShmCompletionEvent
impl Copy for XShmCompletionEvent
impl StructuralPartialEq for XShmCompletionEvent
Auto Trait Implementations§
impl Freeze for XShmCompletionEvent
impl RefUnwindSafe for XShmCompletionEvent
impl !Send for XShmCompletionEvent
impl !Sync for XShmCompletionEvent
impl Unpin for XShmCompletionEvent
impl UnwindSafe for XShmCompletionEvent
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