#[non_exhaustive]
pub struct GetQuantumTaskOutput {
Show 13 fields pub quantum_task_arn: String, pub status: QuantumTaskStatus, pub failure_reason: Option<String>, pub device_arn: String, pub device_parameters: String, pub shots: i64, pub output_s3_bucket: String, pub output_s3_directory: String, pub created_at: DateTime, pub ended_at: Option<DateTime>, pub tags: Option<HashMap<String, String>>, pub job_arn: Option<String>, pub queue_info: Option<QuantumTaskQueueInfo>, /* private fields */
}

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§quantum_task_arn: String

The ARN of the task.

§status: QuantumTaskStatus

The status of the task.

§failure_reason: Option<String>

The reason that a task failed.

§device_arn: String

The ARN of the device the task was run on.

§device_parameters: String

The parameters for the device on which the task ran.

§shots: i64

The number of shots used in the task.

§output_s3_bucket: String

The S3 bucket where task results are stored.

§output_s3_directory: String

The folder in the S3 bucket where task results are stored.

§created_at: DateTime

The time at which the task was created.

§ended_at: Option<DateTime>

The time at which the task ended.

§tags: Option<HashMap<String, String>>

The tags that belong to this task.

§job_arn: Option<String>

The ARN of the Amazon Braket job associated with the quantum task.

§queue_info: Option<QuantumTaskQueueInfo>

Queue information for the requested quantum task. Only returned if QueueInfo is specified in the additionalAttributeNames" field in the GetQuantumTask API request.

Implementations§

source§

impl GetQuantumTaskOutput

source

pub fn quantum_task_arn(&self) -> &str

The ARN of the task.

source

pub fn status(&self) -> &QuantumTaskStatus

The status of the task.

source

pub fn failure_reason(&self) -> Option<&str>

The reason that a task failed.

source

pub fn device_arn(&self) -> &str

The ARN of the device the task was run on.

source

pub fn device_parameters(&self) -> &str

The parameters for the device on which the task ran.

source

pub fn shots(&self) -> i64

The number of shots used in the task.

source

pub fn output_s3_bucket(&self) -> &str

The S3 bucket where task results are stored.

source

pub fn output_s3_directory(&self) -> &str

The folder in the S3 bucket where task results are stored.

source

pub fn created_at(&self) -> &DateTime

The time at which the task was created.

source

pub fn ended_at(&self) -> Option<&DateTime>

The time at which the task ended.

source

pub fn tags(&self) -> Option<&HashMap<String, String>>

The tags that belong to this task.

source

pub fn job_arn(&self) -> Option<&str>

The ARN of the Amazon Braket job associated with the quantum task.

source

pub fn queue_info(&self) -> Option<&QuantumTaskQueueInfo>

Queue information for the requested quantum task. Only returned if QueueInfo is specified in the additionalAttributeNames" field in the GetQuantumTask API request.

source§

impl GetQuantumTaskOutput

source

pub fn builder() -> GetQuantumTaskOutputBuilder

Creates a new builder-style object to manufacture GetQuantumTaskOutput.

Trait Implementations§

source§

impl Clone for GetQuantumTaskOutput

source§

fn clone(&self) -> GetQuantumTaskOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GetQuantumTaskOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for GetQuantumTaskOutput

source§

fn eq(&self, other: &GetQuantumTaskOutput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RequestId for GetQuantumTaskOutput

source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.
source§

impl StructuralPartialEq for GetQuantumTaskOutput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unsharedwhere Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more