#[non_exhaustive]pub struct SourceAlgorithmSpecification {
pub source_algorithms: Option<Vec<SourceAlgorithm>>,
}
Expand description
A list of algorithms that were used to create a model package.
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.source_algorithms: Option<Vec<SourceAlgorithm>>
A list of the algorithms that were used to create a model package.
Implementations§
source§impl SourceAlgorithmSpecification
impl SourceAlgorithmSpecification
sourcepub fn source_algorithms(&self) -> Option<&[SourceAlgorithm]>
pub fn source_algorithms(&self) -> Option<&[SourceAlgorithm]>
A list of the algorithms that were used to create a model package.
source§impl SourceAlgorithmSpecification
impl SourceAlgorithmSpecification
sourcepub fn builder() -> SourceAlgorithmSpecificationBuilder
pub fn builder() -> SourceAlgorithmSpecificationBuilder
Creates a new builder-style object to manufacture SourceAlgorithmSpecification
.
Trait Implementations§
source§impl Clone for SourceAlgorithmSpecification
impl Clone for SourceAlgorithmSpecification
source§fn clone(&self) -> SourceAlgorithmSpecification
fn clone(&self) -> SourceAlgorithmSpecification
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 SourceAlgorithmSpecification
impl Debug for SourceAlgorithmSpecification
source§impl PartialEq<SourceAlgorithmSpecification> for SourceAlgorithmSpecification
impl PartialEq<SourceAlgorithmSpecification> for SourceAlgorithmSpecification
source§fn eq(&self, other: &SourceAlgorithmSpecification) -> bool
fn eq(&self, other: &SourceAlgorithmSpecification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SourceAlgorithmSpecification
Auto Trait Implementations§
impl RefUnwindSafe for SourceAlgorithmSpecification
impl Send for SourceAlgorithmSpecification
impl Sync for SourceAlgorithmSpecification
impl Unpin for SourceAlgorithmSpecification
impl UnwindSafe for SourceAlgorithmSpecification
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