pub struct ChangeProviderProperty<'a, P: PropEl> {
pub provider: Provider,
pub property: Atom,
pub type: Atom,
pub mode: u8,
pub data: &'a [P],
}Expand description
The ChangeProviderProperty request.
This request has no reply.
Associated cookie types are VoidCookie and VoidCookieChecked.
Fields§
§provider: Provider§property: Atom§type: Atom§mode: u8§data: &'a [P]Trait Implementations§
Source§impl<'a, P: Clone + PropEl> Clone for ChangeProviderProperty<'a, P>
impl<'a, P: Clone + PropEl> Clone for ChangeProviderProperty<'a, P>
Source§fn clone(&self) -> ChangeProviderProperty<'a, P>
fn clone(&self) -> ChangeProviderProperty<'a, P>
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, P: PropEl> RawRequest for ChangeProviderProperty<'a, P>
impl<'a, P: PropEl> RawRequest for ChangeProviderProperty<'a, P>
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, P: PropEl> Request for ChangeProviderProperty<'a, P>
impl<'a, P: PropEl> Request for ChangeProviderProperty<'a, P>
impl<'a, P: PropEl> RequestWithoutReply for ChangeProviderProperty<'a, P>
Auto Trait Implementations§
impl<'a, P> Freeze for ChangeProviderProperty<'a, P>
impl<'a, P> RefUnwindSafe for ChangeProviderProperty<'a, P>where
P: RefUnwindSafe,
impl<'a, P> Send for ChangeProviderProperty<'a, P>where
P: Sync,
impl<'a, P> Sync for ChangeProviderProperty<'a, P>where
P: Sync,
impl<'a, P> Unpin for ChangeProviderProperty<'a, P>
impl<'a, P> UnwindSafe for ChangeProviderProperty<'a, P>where
P: RefUnwindSafe,
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