pub struct UpdateDatasetRequest {
pub dataset_id: Option<Option<Uuid>>,
pub dataset_name: Option<Option<String>>,
pub new_tracking_id: Option<Option<String>>,
pub server_configuration: Option<Option<Box<DatasetConfigurationDto>>>,
pub tracking_id: Option<Option<String>>,
}
Fields§
§dataset_id: Option<Option<Uuid>>
The id of the dataset you want to update.
dataset_name: Option<Option<String>>
The new name of the dataset. Must be unique within the organization. If not provided, the name will not be updated.
new_tracking_id: Option<Option<String>>
Optional new tracking ID for the dataset. Can be used to track the dataset in external systems. Must be unique within the organization. If not provided, the tracking ID will not be updated. Strongly recommended to not use a valid uuid value as that will not work with the TR-Dataset header.
server_configuration: Option<Option<Box<DatasetConfigurationDto>>>
§tracking_id: Option<Option<String>>
The tracking ID of the dataset you want to update.
Implementations§
Source§impl UpdateDatasetRequest
impl UpdateDatasetRequest
pub fn new() -> UpdateDatasetRequest
Trait Implementations§
Source§impl Clone for UpdateDatasetRequest
impl Clone for UpdateDatasetRequest
Source§fn clone(&self) -> UpdateDatasetRequest
fn clone(&self) -> UpdateDatasetRequest
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 Debug for UpdateDatasetRequest
impl Debug for UpdateDatasetRequest
Source§impl Default for UpdateDatasetRequest
impl Default for UpdateDatasetRequest
Source§fn default() -> UpdateDatasetRequest
fn default() -> UpdateDatasetRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDatasetRequest
impl<'de> Deserialize<'de> for UpdateDatasetRequest
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 UpdateDatasetRequest
impl PartialEq for UpdateDatasetRequest
Source§impl Serialize for UpdateDatasetRequest
impl Serialize for UpdateDatasetRequest
impl StructuralPartialEq for UpdateDatasetRequest
Auto Trait Implementations§
impl Freeze for UpdateDatasetRequest
impl RefUnwindSafe for UpdateDatasetRequest
impl Send for UpdateDatasetRequest
impl Sync for UpdateDatasetRequest
impl Unpin for UpdateDatasetRequest
impl UnwindSafe for UpdateDatasetRequest
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