Struct x11rb_protocol::protocol::xproto::PolySegmentRequest
source · pub struct PolySegmentRequest<'input> {
pub drawable: Drawable,
pub gc: Gcontext,
pub segments: Cow<'input, [Segment]>,
}
Expand description
draw lines.
Draws multiple, unconnected lines. For each segment, a line is drawn between
(x1, y1) and (x2, y2). The lines are drawn in the order listed in the array of
xcb_segment_t
structures and does not perform joining at coincident
endpoints. For any given line, a pixel is not drawn more than once. If lines
intersect, the intersecting pixels are drawn multiple times.
TODO: include the xcb_segment_t data structure
TODO: an example
§Fields
drawable
- A drawable (Window or Pixmap) to draw on.gc
- The graphics context to use.
TODO: document which attributes of a gc are used
segments_len
- The number ofxcb_segment_t
structures insegments
.segments
- An array ofxcb_segment_t
structures.
§Errors
Drawable
- The specifieddrawable
does not exist.GContext
- The specifiedgc
does not exist.Match
- TODO: reasons?
Fields§
§drawable: Drawable
§gc: Gcontext
§segments: Cow<'input, [Segment]>
Implementations§
source§impl<'input> PolySegmentRequest<'input>
impl<'input> PolySegmentRequest<'input>
sourcepub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
pub fn serialize(self) -> BufWithFds<[Cow<'input, [u8]>; 3]>
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) -> PolySegmentRequest<'static>
pub fn into_owned(self) -> PolySegmentRequest<'static>
Clone all borrowed data in this PolySegmentRequest.
Trait Implementations§
source§impl<'input> Clone for PolySegmentRequest<'input>
impl<'input> Clone for PolySegmentRequest<'input>
source§fn clone(&self) -> PolySegmentRequest<'input>
fn clone(&self) -> PolySegmentRequest<'input>
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<'input> Debug for PolySegmentRequest<'input>
impl<'input> Debug for PolySegmentRequest<'input>
source§impl<'input> Default for PolySegmentRequest<'input>
impl<'input> Default for PolySegmentRequest<'input>
source§fn default() -> PolySegmentRequest<'input>
fn default() -> PolySegmentRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'de, 'input> Deserialize<'de> for PolySegmentRequest<'input>
impl<'de, 'input> Deserialize<'de> for PolySegmentRequest<'input>
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<'input> Hash for PolySegmentRequest<'input>
impl<'input> Hash for PolySegmentRequest<'input>
source§impl<'input> Ord for PolySegmentRequest<'input>
impl<'input> Ord for PolySegmentRequest<'input>
source§fn cmp(&self, other: &PolySegmentRequest<'input>) -> Ordering
fn cmp(&self, other: &PolySegmentRequest<'input>) -> 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<'input> PartialEq for PolySegmentRequest<'input>
impl<'input> PartialEq for PolySegmentRequest<'input>
source§fn eq(&self, other: &PolySegmentRequest<'input>) -> bool
fn eq(&self, other: &PolySegmentRequest<'input>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'input> PartialOrd for PolySegmentRequest<'input>
impl<'input> PartialOrd for PolySegmentRequest<'input>
source§fn partial_cmp(&self, other: &PolySegmentRequest<'input>) -> Option<Ordering>
fn partial_cmp(&self, other: &PolySegmentRequest<'input>) -> 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<'input> Request for PolySegmentRequest<'input>
impl<'input> Request for PolySegmentRequest<'input>
source§impl<'input> Serialize for PolySegmentRequest<'input>
impl<'input> Serialize for PolySegmentRequest<'input>
impl<'input> Eq for PolySegmentRequest<'input>
impl<'input> StructuralPartialEq for PolySegmentRequest<'input>
impl<'input> VoidRequest for PolySegmentRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for PolySegmentRequest<'input>
impl<'input> RefUnwindSafe for PolySegmentRequest<'input>
impl<'input> Send for PolySegmentRequest<'input>
impl<'input> Sync for PolySegmentRequest<'input>
impl<'input> Unpin for PolySegmentRequest<'input>
impl<'input> UnwindSafe for PolySegmentRequest<'input>
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