pub struct AzureMachineLearningWebServiceInputs {
pub name: Option<String>,
pub column_names: Vec<AzureMachineLearningWebServiceInputColumn>,
}Expand description
The inputs for the Azure Machine Learning web service endpoint.
Fields§
§name: Option<String>The name of the input. This is the name provided while authoring the endpoint.
column_names: Vec<AzureMachineLearningWebServiceInputColumn>A list of input columns for the Azure Machine Learning web service endpoint.
Implementations§
Trait Implementations§
Source§impl Clone for AzureMachineLearningWebServiceInputs
impl Clone for AzureMachineLearningWebServiceInputs
Source§fn clone(&self) -> AzureMachineLearningWebServiceInputs
fn clone(&self) -> AzureMachineLearningWebServiceInputs
Returns a duplicate 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 Default for AzureMachineLearningWebServiceInputs
impl Default for AzureMachineLearningWebServiceInputs
Source§fn default() -> AzureMachineLearningWebServiceInputs
fn default() -> AzureMachineLearningWebServiceInputs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureMachineLearningWebServiceInputs
impl<'de> Deserialize<'de> for AzureMachineLearningWebServiceInputs
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 AzureMachineLearningWebServiceInputs
impl PartialEq for AzureMachineLearningWebServiceInputs
Source§fn eq(&self, other: &AzureMachineLearningWebServiceInputs) -> bool
fn eq(&self, other: &AzureMachineLearningWebServiceInputs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AzureMachineLearningWebServiceInputs
Auto Trait Implementations§
impl Freeze for AzureMachineLearningWebServiceInputs
impl RefUnwindSafe for AzureMachineLearningWebServiceInputs
impl Send for AzureMachineLearningWebServiceInputs
impl Sync for AzureMachineLearningWebServiceInputs
impl Unpin for AzureMachineLearningWebServiceInputs
impl UnwindSafe for AzureMachineLearningWebServiceInputs
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