Struct panda::sys::DeviceState
source · [−]#[repr(C)]pub struct DeviceState {
pub parent_obj: Object,
pub id: *const i8,
pub realized: bool,
pub pending_deleted_event: bool,
pub opts: *mut QemuOpts,
pub hotplugged: i32,
pub parent_bus: *mut BusState,
pub gpios: DeviceState__bindgen_ty_1,
pub child_bus: DeviceState__bindgen_ty_2,
pub num_child_bus: i32,
pub instance_id_alias: i32,
pub alias_required_for_version: i32,
}Expand description
DeviceState: @realized: Indicates whether the device has been fully constructed.
This structure should not be accessed directly. We declare it here so that it can be embedded in individual device state structures.
Fields
parent_obj: Objectid: *const i8realized: boolpending_deleted_event: boolopts: *mut QemuOptshotplugged: i32parent_bus: *mut BusStategpios: DeviceState__bindgen_ty_1child_bus: DeviceState__bindgen_ty_2num_child_bus: i32instance_id_alias: i32alias_required_for_version: i32Trait Implementations
sourceimpl Clone for DeviceState
impl Clone for DeviceState
sourcefn clone(&self) -> DeviceState
fn clone(&self) -> DeviceState
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 DeviceState
impl Debug for DeviceState
impl Copy for DeviceState
Auto Trait Implementations
impl RefUnwindSafe for DeviceState
impl !Send for DeviceState
impl !Sync for DeviceState
impl Unpin for DeviceState
impl UnwindSafe for DeviceState
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more