pub struct CreateSubpicture {
pub subpicture_id: Subpicture,
pub context: Context,
pub xvimage_id: u32,
pub width: u16,
pub height: u16,
}Expand description
The CreateSubpicture request.
This request replies CreateSubpictureReply.
Associated cookie types are CreateSubpictureCookie and CreateSubpictureCookieUnchecked.
Fields§
§subpicture_id: Subpicture§context: Context§xvimage_id: u32§width: u16§height: u16Trait Implementations§
Source§impl Clone for CreateSubpicture
impl Clone for CreateSubpicture
Source§fn clone(&self) -> CreateSubpicture
fn clone(&self) -> CreateSubpicture
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 Debug for CreateSubpicture
impl Debug for CreateSubpicture
Source§impl RawRequest for CreateSubpicture
impl RawRequest for CreateSubpicture
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
Source§impl Request for CreateSubpicture
impl Request for CreateSubpicture
Source§impl RequestWithReply for CreateSubpicture
impl RequestWithReply for CreateSubpicture
Source§type Reply = CreateSubpictureReply
type Reply = CreateSubpictureReply
Reply associated with the request
Source§type Cookie = CreateSubpictureCookie
type Cookie = CreateSubpictureCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = CreateSubpictureCookieUnchecked
type CookieUnchecked = CreateSubpictureCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for CreateSubpicture
impl RefUnwindSafe for CreateSubpicture
impl Send for CreateSubpicture
impl Sync for CreateSubpicture
impl Unpin for CreateSubpicture
impl UnwindSafe for CreateSubpicture
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