pub struct QuantumHardwareRegistry {
pub registry_id: u64,
pub supported_architectures: HashMap<ArchitectureType, ArchitectureInfo>,
pub hardware_providers: HashMap<String, HardwareProvider>,
pub capability_matrix: CapabilityMatrix,
pub compatibility_graph: CompatibilityGraph,
pub device_discovery: DeviceDiscoveryEngine,
pub dynamic_registration: DynamicRegistrationSystem,
}Expand description
Quantum Hardware Registry supporting all architectures
Fields§
§registry_id: u64§supported_architectures: HashMap<ArchitectureType, ArchitectureInfo>§hardware_providers: HashMap<String, HardwareProvider>§capability_matrix: CapabilityMatrix§compatibility_graph: CompatibilityGraph§device_discovery: DeviceDiscoveryEngine§dynamic_registration: DynamicRegistrationSystemImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuantumHardwareRegistry
impl RefUnwindSafe for QuantumHardwareRegistry
impl Send for QuantumHardwareRegistry
impl Sync for QuantumHardwareRegistry
impl Unpin for QuantumHardwareRegistry
impl UnwindSafe for QuantumHardwareRegistry
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more