pub struct TriFan<'a> {
pub op: PictOp,
pub src: Picture,
pub dst: Picture,
pub mask_format: Pictformat,
pub src_x: i16,
pub src_y: i16,
pub points: &'a [Pointfix],
}Expand description
The TriFan request.
This request has no reply.
Associated cookie types are VoidCookie and VoidCookieChecked.
Fields§
§op: PictOp§src: Picture§dst: Picture§mask_format: Pictformat§src_x: i16§src_y: i16§points: &'a [Pointfix]Trait Implementations§
Source§impl<'a> RawRequest for TriFan<'a>
impl<'a> RawRequest for TriFan<'a>
Source§fn raw_request(&self, c: &Connection, checked: bool) -> u64
fn raw_request(&self, c: &Connection, checked: bool) -> u64
Actual implementation of the request sending Read more
impl<'a> RequestWithoutReply for TriFan<'a>
Auto Trait Implementations§
impl<'a> Freeze for TriFan<'a>
impl<'a> RefUnwindSafe for TriFan<'a>
impl<'a> Send for TriFan<'a>
impl<'a> Sync for TriFan<'a>
impl<'a> Unpin for TriFan<'a>
impl<'a> UnwindSafe for TriFan<'a>
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