pub enum virNetMessageType {
VIR_NET_CALL = 0,
VIR_NET_REPLY = 1,
VIR_NET_MESSAGE = 2,
VIR_NET_STREAM = 3,
VIR_NET_CALL_WITH_FDS = 4,
VIR_NET_REPLY_WITH_FDS = 5,
}Variants§
VIR_NET_CALL = 0
VIR_NET_REPLY = 1
VIR_NET_MESSAGE = 2
VIR_NET_STREAM = 3
VIR_NET_CALL_WITH_FDS = 4
VIR_NET_REPLY_WITH_FDS = 5
Trait Implementations§
Source§impl Clone for virNetMessageType
impl Clone for virNetMessageType
Source§fn clone(&self) -> virNetMessageType
fn clone(&self) -> virNetMessageType
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 moreimpl Copy for virNetMessageType
Source§impl Debug for virNetMessageType
impl Debug for virNetMessageType
impl Eq for virNetMessageType
Source§impl<Out: Write> Pack<Out> for virNetMessageType
impl<Out: Write> Pack<Out> for virNetMessageType
Source§impl PartialEq for virNetMessageType
impl PartialEq for virNetMessageType
Source§fn eq(&self, other: &virNetMessageType) -> bool
fn eq(&self, other: &virNetMessageType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for virNetMessageType
Auto Trait Implementations§
impl Freeze for virNetMessageType
impl RefUnwindSafe for virNetMessageType
impl Send for virNetMessageType
impl Sync for virNetMessageType
impl Unpin for virNetMessageType
impl UnsafeUnpin for virNetMessageType
impl UnwindSafe for virNetMessageType
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