pub struct SetCrtcConfig<'a> {
pub crtc: Crtc,
pub timestamp: Timestamp,
pub config_timestamp: Timestamp,
pub x: i16,
pub y: i16,
pub mode: Mode,
pub rotation: Rotation,
pub outputs: &'a [Output],
}Expand description
The SetCrtcConfig request.
This request replies SetCrtcConfigReply.
Associated cookie types are SetCrtcConfigCookie and SetCrtcConfigCookieUnchecked.
Fields§
§crtc: Crtc§timestamp: Timestamp§config_timestamp: Timestamp§x: i16§y: i16§mode: Mode§rotation: Rotation§outputs: &'a [Output]Trait Implementations§
Source§impl<'a> Clone for SetCrtcConfig<'a>
impl<'a> Clone for SetCrtcConfig<'a>
Source§fn clone(&self) -> SetCrtcConfig<'a>
fn clone(&self) -> SetCrtcConfig<'a>
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<'a> Debug for SetCrtcConfig<'a>
impl<'a> Debug for SetCrtcConfig<'a>
Source§impl<'a> RawRequest for SetCrtcConfig<'a>
impl<'a> RawRequest for SetCrtcConfig<'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
Source§impl<'a> Request for SetCrtcConfig<'a>
impl<'a> Request for SetCrtcConfig<'a>
Source§impl<'a> RequestWithReply for SetCrtcConfig<'a>
impl<'a> RequestWithReply for SetCrtcConfig<'a>
Source§type Reply = SetCrtcConfigReply
type Reply = SetCrtcConfigReply
Reply associated with the request
Source§type Cookie = SetCrtcConfigCookie
type Cookie = SetCrtcConfigCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = SetCrtcConfigCookieUnchecked
type CookieUnchecked = SetCrtcConfigCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl<'a> Freeze for SetCrtcConfig<'a>
impl<'a> RefUnwindSafe for SetCrtcConfig<'a>
impl<'a> Send for SetCrtcConfig<'a>
impl<'a> Sync for SetCrtcConfig<'a>
impl<'a> Unpin for SetCrtcConfig<'a>
impl<'a> UnwindSafe for SetCrtcConfig<'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