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 · 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 virNetMessageType
impl Debug 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§impl<In: Read> Unpack<In> for virNetMessageType
impl<In: Read> Unpack<In> for virNetMessageType
impl Copy for virNetMessageType
impl Eq for virNetMessageType
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 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