Struct PolySegmentRequest
pub struct PolySegmentRequest<'input> {
pub drawable: u32,
pub gc: u32,
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: u32
§gc: u32
§segments: Cow<'input, [Segment]>
Implementations§
§impl<'input> PolySegmentRequest<'input>
impl<'input> PolySegmentRequest<'input>
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
pub fn serialize(self) -> ([Cow<'input, [u8]>; 3], Vec<OwnedFd>)
Serialize this request into bytes for the provided connection
pub fn into_owned(self) -> PolySegmentRequest<'static>
pub fn into_owned(self) -> PolySegmentRequest<'static>
Clone all borrowed data in this PolySegmentRequest.
Trait Implementations§
§impl<'input> Clone for PolySegmentRequest<'input>
impl<'input> Clone for PolySegmentRequest<'input>
§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 more§impl Debug for PolySegmentRequest<'_>
impl Debug for PolySegmentRequest<'_>
§impl<'input> Default for PolySegmentRequest<'input>
impl<'input> Default for PolySegmentRequest<'input>
§fn default() -> PolySegmentRequest<'input>
fn default() -> PolySegmentRequest<'input>
Returns the “default value” for a type. Read more
§impl<'input> Request for PolySegmentRequest<'input>
impl<'input> Request 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)