pub struct TranslateNativeQuilToEncryptedBinaryResponse {
pub memory_descriptors: Option<HashMap<String, ParameterSpec>>,
pub program: String,
pub ro_sources: Option<Vec<Vec<String>>>,
pub settings_timestamp: Option<String>,
}Fields§
§memory_descriptors: Option<HashMap<String, ParameterSpec>>§program: StringEncrypted binary built for execution on the target quantum processor
ro_sources: Option<Vec<Vec<String>>>§settings_timestamp: Option<String>ISO8601 timestamp of the settings used to translate the program. Translation is deterministic; a program translated twice with the same settings by the same version of the service will have identical output.
Implementations§
Trait Implementations§
Source§impl Clone for TranslateNativeQuilToEncryptedBinaryResponse
impl Clone for TranslateNativeQuilToEncryptedBinaryResponse
Source§fn clone(&self) -> TranslateNativeQuilToEncryptedBinaryResponse
fn clone(&self) -> TranslateNativeQuilToEncryptedBinaryResponse
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 Default for TranslateNativeQuilToEncryptedBinaryResponse
impl Default for TranslateNativeQuilToEncryptedBinaryResponse
Source§fn default() -> TranslateNativeQuilToEncryptedBinaryResponse
fn default() -> TranslateNativeQuilToEncryptedBinaryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TranslateNativeQuilToEncryptedBinaryResponse
impl<'de> Deserialize<'de> for TranslateNativeQuilToEncryptedBinaryResponse
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
Source§impl PartialEq for TranslateNativeQuilToEncryptedBinaryResponse
impl PartialEq for TranslateNativeQuilToEncryptedBinaryResponse
Source§fn eq(&self, other: &TranslateNativeQuilToEncryptedBinaryResponse) -> bool
fn eq(&self, other: &TranslateNativeQuilToEncryptedBinaryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TranslateNativeQuilToEncryptedBinaryResponse
Auto Trait Implementations§
impl Freeze for TranslateNativeQuilToEncryptedBinaryResponse
impl RefUnwindSafe for TranslateNativeQuilToEncryptedBinaryResponse
impl Send for TranslateNativeQuilToEncryptedBinaryResponse
impl Sync for TranslateNativeQuilToEncryptedBinaryResponse
impl Unpin for TranslateNativeQuilToEncryptedBinaryResponse
impl UnwindSafe for TranslateNativeQuilToEncryptedBinaryResponse
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