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