Struct x11rb_protocol::protocol::randr::GetScreenResourcesReply
source · pub struct GetScreenResourcesReply {
pub sequence: u16,
pub length: u32,
pub timestamp: Timestamp,
pub config_timestamp: Timestamp,
pub crtcs: Vec<Crtc>,
pub outputs: Vec<Output>,
pub modes: Vec<ModeInfo>,
pub names: Vec<u8>,
}
Fields§
§sequence: u16
§length: u32
§timestamp: Timestamp
§config_timestamp: Timestamp
§crtcs: Vec<Crtc>
§outputs: Vec<Output>
§modes: Vec<ModeInfo>
§names: Vec<u8>
Implementations§
source§impl GetScreenResourcesReply
impl GetScreenResourcesReply
sourcepub fn num_crtcs(&self) -> u16
pub fn num_crtcs(&self) -> u16
Get the value of the num_crtcs
field.
The num_crtcs
field is used as the length field of the crtcs
field.
This function computes the field’s value again based on the length of the list.
§Panics
Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.
sourcepub fn num_outputs(&self) -> u16
pub fn num_outputs(&self) -> u16
Get the value of the num_outputs
field.
The num_outputs
field is used as the length field of the outputs
field.
This function computes the field’s value again based on the length of the list.
§Panics
Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.
sourcepub fn num_modes(&self) -> u16
pub fn num_modes(&self) -> u16
Get the value of the num_modes
field.
The num_modes
field is used as the length field of the modes
field.
This function computes the field’s value again based on the length of the list.
§Panics
Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.
sourcepub fn names_len(&self) -> u16
pub fn names_len(&self) -> u16
Get the value of the names_len
field.
The names_len
field is used as the length field of the names
field.
This function computes the field’s value again based on the length of the list.
§Panics
Panics if the value cannot be represented in the target type. This cannot happen with values of the struct received from the X11 server.
Trait Implementations§
source§impl Clone for GetScreenResourcesReply
impl Clone for GetScreenResourcesReply
source§fn clone(&self) -> GetScreenResourcesReply
fn clone(&self) -> GetScreenResourcesReply
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetScreenResourcesReply
impl Debug for GetScreenResourcesReply
source§impl Default for GetScreenResourcesReply
impl Default for GetScreenResourcesReply
source§fn default() -> GetScreenResourcesReply
fn default() -> GetScreenResourcesReply
source§impl<'de> Deserialize<'de> for GetScreenResourcesReply
impl<'de> Deserialize<'de> for GetScreenResourcesReply
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl From<GetScreenResourcesReply> for Reply
impl From<GetScreenResourcesReply> for Reply
source§fn from(reply: GetScreenResourcesReply) -> Reply
fn from(reply: GetScreenResourcesReply) -> Reply
source§impl Hash for GetScreenResourcesReply
impl Hash for GetScreenResourcesReply
source§impl Ord for GetScreenResourcesReply
impl Ord for GetScreenResourcesReply
source§fn cmp(&self, other: &GetScreenResourcesReply) -> Ordering
fn cmp(&self, other: &GetScreenResourcesReply) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for GetScreenResourcesReply
impl PartialEq for GetScreenResourcesReply
source§fn eq(&self, other: &GetScreenResourcesReply) -> bool
fn eq(&self, other: &GetScreenResourcesReply) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for GetScreenResourcesReply
impl PartialOrd for GetScreenResourcesReply
source§fn partial_cmp(&self, other: &GetScreenResourcesReply) -> Option<Ordering>
fn partial_cmp(&self, other: &GetScreenResourcesReply) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more