Enum x11rb_protocol::connection::ReplyFdKind
source · pub enum ReplyFdKind {
NoReply,
ReplyWithoutFDs,
ReplyWithFDs,
}
Expand description
Information about the reply to an X11 request.
Variants§
NoReply
The request does not have a reply.
ReplyWithoutFDs
The request has a reply and that reply does not contain any file descriptors.
ReplyWithFDs
The request has a reply and that reply does contain file descriptor(s).
Trait Implementations§
source§impl Clone for ReplyFdKind
impl Clone for ReplyFdKind
source§fn clone(&self) -> ReplyFdKind
fn clone(&self) -> ReplyFdKind
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 ReplyFdKind
impl Debug for ReplyFdKind
source§impl PartialEq for ReplyFdKind
impl PartialEq for ReplyFdKind
source§fn eq(&self, other: &ReplyFdKind) -> bool
fn eq(&self, other: &ReplyFdKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ReplyFdKind
impl Eq for ReplyFdKind
impl StructuralPartialEq for ReplyFdKind
Auto Trait Implementations§
impl Freeze for ReplyFdKind
impl RefUnwindSafe for ReplyFdKind
impl Send for ReplyFdKind
impl Sync for ReplyFdKind
impl Unpin for ReplyFdKind
impl UnwindSafe for ReplyFdKind
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