[][src]Struct rusoto_xray::GetServiceGraphResult

pub struct GetServiceGraphResult {
    pub contains_old_group_versions: Option<bool>,
    pub end_time: Option<f64>,
    pub next_token: Option<String>,
    pub services: Option<Vec<Service>>,
    pub start_time: Option<f64>,
}

Fields

contains_old_group_versions: Option<bool>

A flag indicating whether the group's filter expression has been consistent, or if the returned service graph may show traces from an older version of the group's filter expression.

end_time: Option<f64>

The end of the time frame for which the graph was generated.

next_token: Option<String>

Pagination token.

services: Option<Vec<Service>>

The services that have processed a traced request during the specified time frame.

start_time: Option<f64>

The start of the time frame for which the graph was generated.

Trait Implementations

impl Clone for GetServiceGraphResult[src]

impl Debug for GetServiceGraphResult[src]

impl Default for GetServiceGraphResult[src]

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

impl PartialEq<GetServiceGraphResult> for GetServiceGraphResult[src]

impl StructuralPartialEq for GetServiceGraphResult[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.