[][src]Struct rusoto_devicefarm::TestGridSession

pub struct TestGridSession {
    pub arn: Option<String>,
    pub billing_minutes: Option<f64>,
    pub created: Option<f64>,
    pub ended: Option<f64>,
    pub selenium_properties: Option<String>,
    pub status: Option<String>,
}

A TestGridSession is a single instance of a browser launched from the URL provided by a call to CreateTestGridUrl.

Fields

arn: Option<String>

The ARN of the session.

billing_minutes: Option<f64>

The number of billed minutes that were used for this session.

created: Option<f64>

The time that the session was started.

ended: Option<f64>

The time the session ended.

selenium_properties: Option<String>

A JSON object of options and parameters passed to the Selenium WebDriver.

status: Option<String>

The state of the session.

Trait Implementations

impl Clone for TestGridSession[src]

impl Debug for TestGridSession[src]

impl Default for TestGridSession[src]

impl<'de> Deserialize<'de> for TestGridSession[src]

impl PartialEq<TestGridSession> for TestGridSession[src]

impl StructuralPartialEq for TestGridSession[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.