Struct x11rb_protocol::protocol::xproto::CopyPlaneRequest
source · [−]pub struct CopyPlaneRequest {
pub src_drawable: Drawable,
pub dst_drawable: Drawable,
pub gc: Gcontext,
pub src_x: i16,
pub src_y: i16,
pub dst_x: i16,
pub dst_y: i16,
pub width: u16,
pub height: u16,
pub bit_plane: u32,
}
Fields
src_drawable: Drawable
dst_drawable: Drawable
gc: Gcontext
src_x: i16
src_y: i16
dst_x: i16
dst_y: i16
width: u16
height: u16
bit_plane: u32
Implementations
sourceimpl CopyPlaneRequest
impl CopyPlaneRequest
sourcepub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
pub fn serialize(self) -> BufWithFds<PiecewiseBuf<'static>>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations
sourceimpl Clone for CopyPlaneRequest
impl Clone for CopyPlaneRequest
sourcefn clone(&self) -> CopyPlaneRequest
fn clone(&self) -> CopyPlaneRequest
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 CopyPlaneRequest
impl Debug for CopyPlaneRequest
sourceimpl Default for CopyPlaneRequest
impl Default for CopyPlaneRequest
sourcefn default() -> CopyPlaneRequest
fn default() -> CopyPlaneRequest
Returns the “default value” for a type. Read more
sourceimpl Hash for CopyPlaneRequest
impl Hash for CopyPlaneRequest
sourceimpl Ord for CopyPlaneRequest
impl Ord for CopyPlaneRequest
sourceimpl PartialEq<CopyPlaneRequest> for CopyPlaneRequest
impl PartialEq<CopyPlaneRequest> for CopyPlaneRequest
sourcefn eq(&self, other: &CopyPlaneRequest) -> bool
fn eq(&self, other: &CopyPlaneRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CopyPlaneRequest) -> bool
fn ne(&self, other: &CopyPlaneRequest) -> bool
This method tests for !=
.
sourceimpl PartialOrd<CopyPlaneRequest> for CopyPlaneRequest
impl PartialOrd<CopyPlaneRequest> for CopyPlaneRequest
sourcefn partial_cmp(&self, other: &CopyPlaneRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &CopyPlaneRequest) -> 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 Request for CopyPlaneRequest
impl Request for CopyPlaneRequest
impl Copy for CopyPlaneRequest
impl Eq for CopyPlaneRequest
impl StructuralEq for CopyPlaneRequest
impl StructuralPartialEq for CopyPlaneRequest
impl VoidRequest for CopyPlaneRequest
Auto Trait Implementations
impl RefUnwindSafe for CopyPlaneRequest
impl Send for CopyPlaneRequest
impl Sync for CopyPlaneRequest
impl Unpin for CopyPlaneRequest
impl UnwindSafe for CopyPlaneRequest
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