pub struct GetProviderProperty {
pub provider: Provider,
pub property: Atom,
pub type: Atom,
pub long_offset: u32,
pub long_length: u32,
pub delete: bool,
pub pending: bool,
}Expand description
The GetProviderProperty request.
This request replies GetProviderPropertyReply.
Associated cookie types are GetProviderPropertyCookie and GetProviderPropertyCookieUnchecked.
Fields§
§provider: Provider§property: Atom§type: Atom§long_offset: u32§long_length: u32§delete: bool§pending: boolTrait Implementations§
Source§impl Clone for GetProviderProperty
impl Clone for GetProviderProperty
Source§fn clone(&self) -> GetProviderProperty
fn clone(&self) -> GetProviderProperty
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 GetProviderProperty
impl Debug for GetProviderProperty
Source§impl RawRequest for GetProviderProperty
impl RawRequest for GetProviderProperty
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 GetProviderProperty
impl Request for GetProviderProperty
Source§impl RequestWithReply for GetProviderProperty
impl RequestWithReply for GetProviderProperty
Source§type Reply = GetProviderPropertyReply
type Reply = GetProviderPropertyReply
Reply associated with the request
Source§type Cookie = GetProviderPropertyCookie
type Cookie = GetProviderPropertyCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = GetProviderPropertyCookieUnchecked
type CookieUnchecked = GetProviderPropertyCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for GetProviderProperty
impl RefUnwindSafe for GetProviderProperty
impl Send for GetProviderProperty
impl Sync for GetProviderProperty
impl Unpin for GetProviderProperty
impl UnwindSafe for GetProviderProperty
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