pub struct SourceAlgorithmSpecification {
pub source_algorithms: Vec<SourceAlgorithm>,
}
Expand description
A list of algorithms that were used to create a model package.
Fields§
§source_algorithms: Vec<SourceAlgorithm>
A list of the algorithms that were used to create a model package.
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 Default for SourceAlgorithmSpecification
impl Default for SourceAlgorithmSpecification
Source§fn default() -> SourceAlgorithmSpecification
fn default() -> SourceAlgorithmSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceAlgorithmSpecification
impl<'de> Deserialize<'de> for SourceAlgorithmSpecification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SourceAlgorithmSpecification
impl PartialEq for SourceAlgorithmSpecification
Source§fn eq(&self, other: &SourceAlgorithmSpecification) -> bool
fn eq(&self, other: &SourceAlgorithmSpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SourceAlgorithmSpecification
Auto Trait Implementations§
impl Freeze for SourceAlgorithmSpecification
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