[][src]Struct rusoto_rekognition::TestingData

pub struct TestingData {
    pub assets: Option<Vec<Asset>>,
    pub auto_create: Option<bool>,
}

The dataset used for testing. Optionally, if AutoCreate is set, Amazon Rekognition Custom Labels creates a testing dataset using an 80/20 split of the training dataset.

Fields

assets: Option<Vec<Asset>>

The assets used for testing.

auto_create: Option<bool>

If specified, Amazon Rekognition Custom Labels creates a testing dataset with an 80/20 split of the training dataset.

Trait Implementations

impl Clone for TestingData[src]

impl Debug for TestingData[src]

impl Default for TestingData[src]

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

impl PartialEq<TestingData> for TestingData[src]

impl Serialize for TestingData[src]

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