[][src]Struct rusoto_devicefarm::TestGridSessionAction

pub struct TestGridSessionAction {
    pub action: Option<String>,
    pub duration: Option<i64>,
    pub request_method: Option<String>,
    pub started: Option<f64>,
    pub status_code: Option<String>,
}

An action taken by a TestGridSession browser instance.

Fields

action: Option<String>

The action taken by the session.

duration: Option<i64>

The time, in milliseconds, that the action took to complete in the browser.

request_method: Option<String>

HTTP method that the browser used to make the request.

started: Option<f64>

The time that the session invoked the action.

status_code: Option<String>

HTTP status code returned to the browser when the action was taken.

Trait Implementations

impl Clone for TestGridSessionAction[src]

impl Debug for TestGridSessionAction[src]

impl Default for TestGridSessionAction[src]

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

impl PartialEq<TestGridSessionAction> for TestGridSessionAction[src]

impl StructuralPartialEq for TestGridSessionAction[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, 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> Sealed<T> for T where
    T: ?Sized

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.