pub struct ConfigureProviderPropertyRequest<'input> {
pub provider: Provider,
pub property: Atom,
pub pending: bool,
pub range: bool,
pub values: Cow<'input, [i32]>,
}
Fields§
§provider: Provider
§property: Atom
§pending: bool
§range: bool
§values: Cow<'input, [i32]>
Implementations§
source§impl<'input> ConfigureProviderPropertyRequest<'input>
impl<'input> ConfigureProviderPropertyRequest<'input>
sourcepub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'input, [u8]>; 3]>
pub fn serialize(self, major_opcode: u8) -> BufWithFds<[Cow<'input, [u8]>; 3]>
Serialize this request into bytes for the provided connection
sourcepub fn into_owned(self) -> ConfigureProviderPropertyRequest<'static>
pub fn into_owned(self) -> ConfigureProviderPropertyRequest<'static>
Clone all borrowed data in this ConfigureProviderPropertyRequest.
Trait Implementations§
source§impl<'input> Clone for ConfigureProviderPropertyRequest<'input>
impl<'input> Clone for ConfigureProviderPropertyRequest<'input>
source§fn clone(&self) -> ConfigureProviderPropertyRequest<'input>
fn clone(&self) -> ConfigureProviderPropertyRequest<'input>
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 ConfigureProviderPropertyRequest<'_>
impl Debug for ConfigureProviderPropertyRequest<'_>
source§impl<'input> Default for ConfigureProviderPropertyRequest<'input>
impl<'input> Default for ConfigureProviderPropertyRequest<'input>
source§fn default() -> ConfigureProviderPropertyRequest<'input>
fn default() -> ConfigureProviderPropertyRequest<'input>
Returns the “default value” for a type. Read more
source§impl<'input> Request for ConfigureProviderPropertyRequest<'input>
impl<'input> Request for ConfigureProviderPropertyRequest<'input>
impl<'input> VoidRequest for ConfigureProviderPropertyRequest<'input>
Auto Trait Implementations§
impl<'input> Freeze for ConfigureProviderPropertyRequest<'input>
impl<'input> RefUnwindSafe for ConfigureProviderPropertyRequest<'input>
impl<'input> Send for ConfigureProviderPropertyRequest<'input>
impl<'input> Sync for ConfigureProviderPropertyRequest<'input>
impl<'input> Unpin for ConfigureProviderPropertyRequest<'input>
impl<'input> UnwindSafe for ConfigureProviderPropertyRequest<'input>
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