pub struct VendorPrivateWithReply<'a> {
pub vendor_code: u32,
pub context_tag: ContextTag,
pub data: &'a [u8],
}Expand description
The VendorPrivateWithReply request.
This request replies VendorPrivateWithReplyReply.
Associated cookie types are VendorPrivateWithReplyCookie and VendorPrivateWithReplyCookieUnchecked.
Fields§
§vendor_code: u32§context_tag: ContextTag§data: &'a [u8]Trait Implementations§
Source§impl<'a> Clone for VendorPrivateWithReply<'a>
impl<'a> Clone for VendorPrivateWithReply<'a>
Source§fn clone(&self) -> VendorPrivateWithReply<'a>
fn clone(&self) -> VendorPrivateWithReply<'a>
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> Debug for VendorPrivateWithReply<'a>
impl<'a> Debug for VendorPrivateWithReply<'a>
Source§impl<'a> RawRequest for VendorPrivateWithReply<'a>
impl<'a> RawRequest for VendorPrivateWithReply<'a>
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> Request for VendorPrivateWithReply<'a>
impl<'a> Request for VendorPrivateWithReply<'a>
Source§impl<'a> RequestWithReply for VendorPrivateWithReply<'a>
impl<'a> RequestWithReply for VendorPrivateWithReply<'a>
Source§type Reply = VendorPrivateWithReplyReply
type Reply = VendorPrivateWithReplyReply
Reply associated with the request
Source§type Cookie = VendorPrivateWithReplyCookie
type Cookie = VendorPrivateWithReplyCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = VendorPrivateWithReplyCookieUnchecked
type CookieUnchecked = VendorPrivateWithReplyCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl<'a> Freeze for VendorPrivateWithReply<'a>
impl<'a> RefUnwindSafe for VendorPrivateWithReply<'a>
impl<'a> Send for VendorPrivateWithReply<'a>
impl<'a> Sync for VendorPrivateWithReply<'a>
impl<'a> Unpin for VendorPrivateWithReply<'a>
impl<'a> UnwindSafe for VendorPrivateWithReply<'a>
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