Struct rusoto_devicefarm::Sample[][src]

pub struct Sample {
    pub arn: Option<String>,
    pub type_: Option<String>,
    pub url: Option<String>,
}

Represents a sample of performance data.

Fields

The sample's ARN.

The sample's type.

Must be one of the following values:

  • CPU: A CPU sample type. This is expressed as the app processing CPU time (including child processes) as reported by process, as a percentage.

  • MEMORY: A memory usage sample type. This is expressed as the total proportional set size of an app process, in kilobytes.

  • NATIVEAVGDRAWTIME

  • NATIVEFPS

  • NATIVEFRAMES

  • NATIVEMAXDRAWTIME

  • NATIVEMINDRAWTIME

  • OPENGLAVGDRAWTIME

  • OPENGLFPS

  • OPENGLFRAMES

  • OPENGLMAXDRAWTIME

  • OPENGLMINDRAWTIME

  • RX

  • RXRATE: The total number of bytes per second (TCP and UDP) that are sent, by app process.

  • THREADS: A threads sample type. This is expressed as the total number of threads per app process.

  • TX

  • TXRATE: The total number of bytes per second (TCP and UDP) that are received, by app process.

The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the sample's file.

Trait Implementations

impl Default for Sample
[src]

Returns the "default value" for a type. Read more

impl Debug for Sample
[src]

Formats the value using the given formatter. Read more

impl Clone for Sample
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Sample
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Sample

impl Sync for Sample