Struct aws_sdk_rekognition::types::TrainingData
source · #[non_exhaustive]pub struct TrainingData {
pub assets: Option<Vec<Asset>>,
}
Expand description
The dataset used for training.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.assets: Option<Vec<Asset>>
A Sagemaker GroundTruth manifest file that contains the training images (assets).
Implementations§
source§impl TrainingData
impl TrainingData
source§impl TrainingData
impl TrainingData
sourcepub fn builder() -> TrainingDataBuilder
pub fn builder() -> TrainingDataBuilder
Creates a new builder-style object to manufacture TrainingData
.
Trait Implementations§
source§impl Clone for TrainingData
impl Clone for TrainingData
source§fn clone(&self) -> TrainingData
fn clone(&self) -> TrainingData
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TrainingData
impl Debug for TrainingData
source§impl PartialEq<TrainingData> for TrainingData
impl PartialEq<TrainingData> for TrainingData
source§fn eq(&self, other: &TrainingData) -> bool
fn eq(&self, other: &TrainingData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TrainingData
Auto Trait Implementations§
impl RefUnwindSafe for TrainingData
impl Send for TrainingData
impl Sync for TrainingData
impl Unpin for TrainingData
impl UnwindSafe for TrainingData
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more