Enum devices::bus::HostHotPlugKey
source · pub enum HostHotPlugKey {
UpstreamPort {
host_addr: PciAddress,
},
DownstreamPort {
host_addr: PciAddress,
},
Vfio {
host_addr: PciAddress,
},
}
Expand description
The key to identify hotplug device from host view. like host sysfs path for vfio pci device, host disk file path for virtio block device
Variants§
UpstreamPort
Fields
§
host_addr: PciAddress
DownstreamPort
Fields
§
host_addr: PciAddress
Vfio
Fields
§
host_addr: PciAddress
Trait Implementations§
source§impl Clone for HostHotPlugKey
impl Clone for HostHotPlugKey
source§fn clone(&self) -> HostHotPlugKey
fn clone(&self) -> HostHotPlugKey
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 HostHotPlugKey
impl Debug for HostHotPlugKey
source§impl PartialEq<HostHotPlugKey> for HostHotPlugKey
impl PartialEq<HostHotPlugKey> for HostHotPlugKey
source§fn eq(&self, other: &HostHotPlugKey) -> bool
fn eq(&self, other: &HostHotPlugKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for HostHotPlugKey
impl Eq for HostHotPlugKey
impl StructuralEq for HostHotPlugKey
impl StructuralPartialEq for HostHotPlugKey
Auto Trait Implementations§
impl RefUnwindSafe for HostHotPlugKey
impl Send for HostHotPlugKey
impl Sync for HostHotPlugKey
impl Unpin for HostHotPlugKey
impl UnwindSafe for HostHotPlugKey
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.