pub struct ListComponents {
pub device_spec: DeviceSpec,
pub max_names: u16,
}Expand description
The ListComponents request.
This request replies ListComponentsReply.
Associated cookie types are ListComponentsCookie and ListComponentsCookieUnchecked.
Fields§
§device_spec: DeviceSpec§max_names: u16Trait Implementations§
Source§impl Clone for ListComponents
impl Clone for ListComponents
Source§fn clone(&self) -> ListComponents
fn clone(&self) -> ListComponents
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListComponents
impl Debug for ListComponents
Source§impl RawRequest for ListComponents
impl RawRequest for ListComponents
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 ListComponents
impl Request for ListComponents
Source§impl RequestWithReply for ListComponents
impl RequestWithReply for ListComponents
Source§type Reply = ListComponentsReply
type Reply = ListComponentsReply
Reply associated with the request
Source§type Cookie = ListComponentsCookie
type Cookie = ListComponentsCookie
Default cookie type for the request, as returned by Connection::send_request.
Source§type CookieUnchecked = ListComponentsCookieUnchecked
type CookieUnchecked = ListComponentsCookieUnchecked
Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.
Auto Trait Implementations§
impl Freeze for ListComponents
impl RefUnwindSafe for ListComponents
impl Send for ListComponents
impl Sync for ListComponents
impl Unpin for ListComponents
impl UnsafeUnpin for ListComponents
impl UnwindSafe for ListComponents
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