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
sourceimpl Clone for ReplyFdKind
impl Clone for ReplyFdKind
sourcefn clone(&self) -> ReplyFdKind
fn clone(&self) -> ReplyFdKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ReplyFdKind
impl Debug for ReplyFdKind
sourceimpl PartialEq<ReplyFdKind> for ReplyFdKind
impl PartialEq<ReplyFdKind> for ReplyFdKind
impl Copy for ReplyFdKind
impl Eq for ReplyFdKind
impl StructuralEq for ReplyFdKind
impl StructuralPartialEq for ReplyFdKind
Auto Trait Implementations
impl RefUnwindSafe for ReplyFdKind
impl Send for ReplyFdKind
impl Sync for ReplyFdKind
impl Unpin for ReplyFdKind
impl UnwindSafe for ReplyFdKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more