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_tstructures insegments. -
segments- An array ofxcb_segment_tstructures.
§Errors
Drawable- The specifieddrawabledoes not exist.GContext- The specifiedgcdoes 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 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>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for PolySegmentRequest<'_>
Available on non-crate feature extra-traits only.
impl Debug for PolySegmentRequest<'_>
extra-traits only.