Struct x11rb_protocol::protocol::xproto::ConvertSelectionRequest
source · pub struct ConvertSelectionRequest {
pub requestor: Window,
pub selection: Atom,
pub target: Atom,
pub property: Atom,
pub time: Timestamp,
}
Fields§
§requestor: Window
§selection: Atom
§target: Atom
§property: Atom
§time: Timestamp
Implementations§
source§impl ConvertSelectionRequest
impl ConvertSelectionRequest
sourcepub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
pub fn serialize(self) -> BufWithFds<[Cow<'static, [u8]>; 1]>
Serialize this request into bytes for the provided connection
sourcepub fn try_parse_request(
header: RequestHeader,
value: &[u8]
) -> Result<Self, ParseError>
pub fn try_parse_request( header: RequestHeader, value: &[u8] ) -> Result<Self, ParseError>
Parse this request given its header, its body, and any fds that go along with it
Trait Implementations§
source§impl Clone for ConvertSelectionRequest
impl Clone for ConvertSelectionRequest
source§fn clone(&self) -> ConvertSelectionRequest
fn clone(&self) -> ConvertSelectionRequest
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 ConvertSelectionRequest
impl Debug for ConvertSelectionRequest
source§impl Default for ConvertSelectionRequest
impl Default for ConvertSelectionRequest
source§fn default() -> ConvertSelectionRequest
fn default() -> ConvertSelectionRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ConvertSelectionRequest
impl<'de> Deserialize<'de> for ConvertSelectionRequest
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for ConvertSelectionRequest
impl Hash for ConvertSelectionRequest
source§impl Ord for ConvertSelectionRequest
impl Ord for ConvertSelectionRequest
source§fn cmp(&self, other: &ConvertSelectionRequest) -> Ordering
fn cmp(&self, other: &ConvertSelectionRequest) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ConvertSelectionRequest
impl PartialEq for ConvertSelectionRequest
source§fn eq(&self, other: &ConvertSelectionRequest) -> bool
fn eq(&self, other: &ConvertSelectionRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ConvertSelectionRequest
impl PartialOrd for ConvertSelectionRequest
source§fn partial_cmp(&self, other: &ConvertSelectionRequest) -> Option<Ordering>
fn partial_cmp(&self, other: &ConvertSelectionRequest) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Request for ConvertSelectionRequest
impl Request for ConvertSelectionRequest
source§impl Serialize for ConvertSelectionRequest
impl Serialize for ConvertSelectionRequest
impl Copy for ConvertSelectionRequest
impl Eq for ConvertSelectionRequest
impl StructuralPartialEq for ConvertSelectionRequest
impl VoidRequest for ConvertSelectionRequest
Auto Trait Implementations§
impl Freeze for ConvertSelectionRequest
impl RefUnwindSafe for ConvertSelectionRequest
impl Send for ConvertSelectionRequest
impl Sync for ConvertSelectionRequest
impl Unpin for ConvertSelectionRequest
impl UnwindSafe for ConvertSelectionRequest
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