pub struct QpuOracleState {Show 23 fields
pub feature_unlocked: bool,
pub commitment_affirmed_at: Option<String>,
pub ibm_token_enc: String,
pub dwave_token_enc: String,
pub ionq_token_enc: String,
pub rigetti_token_enc: String,
pub azure_credentials_enc: String,
pub braket_credentials_enc: String,
pub google_token_enc: String,
pub quantinuum_token_enc: String,
pub ibm_minutes_used: f64,
pub dwave_minutes_used: f64,
pub ionq_minutes_used: f64,
pub rigetti_minutes_used: f64,
pub azure_minutes_used: f64,
pub braket_minutes_used: f64,
pub google_minutes_used: f64,
pub quantinuum_minutes_used: f64,
pub max_shots_per_task: u32,
pub fallback_to_classical: bool,
pub enable_qubo_routing: bool,
pub enable_dft_ground_state: bool,
pub enable_defeasible_resolution: bool,
}Fields§
§feature_unlocked: bool§commitment_affirmed_at: Option<String>ISO-8601 timestamp of when the commitment was affirmed.
ibm_token_enc: String§dwave_token_enc: String§ionq_token_enc: String§rigetti_token_enc: String§azure_credentials_enc: StringAzure: “<subscription_id>/<resource_group>/
braket_credentials_enc: StringBraket: “<aws_access_key_id>|<aws_secret_access_key>|
google_token_enc: String§quantinuum_token_enc: String§ibm_minutes_used: f64§dwave_minutes_used: f64§ionq_minutes_used: f64§rigetti_minutes_used: f64§azure_minutes_used: f64§braket_minutes_used: f64§google_minutes_used: f64§quantinuum_minutes_used: f64§max_shots_per_task: u32§fallback_to_classical: bool§enable_qubo_routing: bool§enable_dft_ground_state: bool§enable_defeasible_resolution: boolTrait Implementations§
Source§impl Clone for QpuOracleState
impl Clone for QpuOracleState
Source§fn clone(&self) -> QpuOracleState
fn clone(&self) -> QpuOracleState
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 moreSource§impl Debug for QpuOracleState
impl Debug for QpuOracleState
Source§impl Default for QpuOracleState
impl Default for QpuOracleState
Source§impl<'de> Deserialize<'de> for QpuOracleState
impl<'de> Deserialize<'de> for QpuOracleState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QpuOracleState
impl RefUnwindSafe for QpuOracleState
impl Send for QpuOracleState
impl Sync for QpuOracleState
impl Unpin for QpuOracleState
impl UnsafeUnpin for QpuOracleState
impl UnwindSafe for QpuOracleState
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.