Struct x11rb_protocol::protocol::xproto::PolyArcRequest
source · [−]pub struct PolyArcRequest<'input> {
pub drawable: Drawable,
pub gc: Gcontext,
pub arcs: Cow<'input, [Arc]>,
}
Fields
drawable: Drawable
gc: Gcontext
arcs: Cow<'input, [Arc]>
Implementations
sourceimpl<'input> PolyArcRequest<'input>
impl<'input> PolyArcRequest<'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) -> PolyArcRequest<'static>
pub fn into_owned(self) -> PolyArcRequest<'static>
Clone all borrowed data in this PolyArcRequest.
Trait Implementations
sourceimpl<'input> Clone for PolyArcRequest<'input>
impl<'input> Clone for PolyArcRequest<'input>
sourcefn clone(&self) -> PolyArcRequest<'input>
fn clone(&self) -> PolyArcRequest<'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 PolyArcRequest<'input>
impl<'input> Debug for PolyArcRequest<'input>
sourceimpl<'input> Default for PolyArcRequest<'input>
impl<'input> Default for PolyArcRequest<'input>
sourcefn default() -> PolyArcRequest<'input>
fn default() -> PolyArcRequest<'input>
Returns the “default value” for a type. Read more
sourceimpl<'input> Hash for PolyArcRequest<'input>
impl<'input> Hash for PolyArcRequest<'input>
sourceimpl<'input> Ord for PolyArcRequest<'input>
impl<'input> Ord for PolyArcRequest<'input>
sourceimpl<'input> PartialEq<PolyArcRequest<'input>> for PolyArcRequest<'input>
impl<'input> PartialEq<PolyArcRequest<'input>> for PolyArcRequest<'input>
sourcefn eq(&self, other: &PolyArcRequest<'input>) -> bool
fn eq(&self, other: &PolyArcRequest<'input>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PolyArcRequest<'input>) -> bool
fn ne(&self, other: &PolyArcRequest<'input>) -> bool
This method tests for !=
.
sourceimpl<'input> PartialOrd<PolyArcRequest<'input>> for PolyArcRequest<'input>
impl<'input> PartialOrd<PolyArcRequest<'input>> for PolyArcRequest<'input>
sourcefn partial_cmp(&self, other: &PolyArcRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &PolyArcRequest<'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 PolyArcRequest<'input>
impl<'input> Request for PolyArcRequest<'input>
impl<'input> Eq for PolyArcRequest<'input>
impl<'input> StructuralEq for PolyArcRequest<'input>
impl<'input> StructuralPartialEq for PolyArcRequest<'input>
impl<'input> VoidRequest for PolyArcRequest<'input>
Auto Trait Implementations
impl<'input> RefUnwindSafe for PolyArcRequest<'input>
impl<'input> Send for PolyArcRequest<'input>
impl<'input> Sync for PolyArcRequest<'input>
impl<'input> Unpin for PolyArcRequest<'input>
impl<'input> UnwindSafe for PolyArcRequest<'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