[][src]Struct rusoto_xray::GetSamplingTargetsResult

pub struct GetSamplingTargetsResult {
    pub last_rule_modification: Option<f64>,
    pub sampling_target_documents: Option<Vec<SamplingTargetDocument>>,
    pub unprocessed_statistics: Option<Vec<UnprocessedStatistics>>,
}

Fields

last_rule_modification: Option<f64>

The last time a user changed the sampling rule configuration. If the sampling rule configuration changed since the service last retrieved it, the service should call GetSamplingRules to get the latest version.

sampling_target_documents: Option<Vec<SamplingTargetDocument>>

Updated rules that the service should use to sample requests.

unprocessed_statistics: Option<Vec<UnprocessedStatistics>>

Information about SamplingStatisticsDocument that X-Ray could not process.

Trait Implementations

impl Clone for GetSamplingTargetsResult[src]

impl Debug for GetSamplingTargetsResult[src]

impl Default for GetSamplingTargetsResult[src]

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

impl PartialEq<GetSamplingTargetsResult> for GetSamplingTargetsResult[src]

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