pub struct UpdateDataSourceOutput {
pub data_source_id: Option<String>,
}
Expand description
Represents the output of an UpdateDataSource
operation.
You can see the updated content by using the GetBatchPrediction
operation.
Fields§
§data_source_id: Option<String>
The ID assigned to the DataSource
during creation. This value should be identical to the value of the DataSourceID
in the request.
Trait Implementations§
Source§impl Clone for UpdateDataSourceOutput
impl Clone for UpdateDataSourceOutput
Source§fn clone(&self) -> UpdateDataSourceOutput
fn clone(&self) -> UpdateDataSourceOutput
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 UpdateDataSourceOutput
impl Debug for UpdateDataSourceOutput
Source§impl Default for UpdateDataSourceOutput
impl Default for UpdateDataSourceOutput
Source§fn default() -> UpdateDataSourceOutput
fn default() -> UpdateDataSourceOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDataSourceOutput
impl<'de> Deserialize<'de> for UpdateDataSourceOutput
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 UpdateDataSourceOutput
impl PartialEq for UpdateDataSourceOutput
impl StructuralPartialEq for UpdateDataSourceOutput
Auto Trait Implementations§
impl Freeze for UpdateDataSourceOutput
impl RefUnwindSafe for UpdateDataSourceOutput
impl Send for UpdateDataSourceOutput
impl Sync for UpdateDataSourceOutput
impl Unpin for UpdateDataSourceOutput
impl UnwindSafe for UpdateDataSourceOutput
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