pub struct AddSplitPointsRequest {
pub initiator: Option<String>,
pub split_points: Option<Vec<SplitPoints>>,
}Expand description
The request for AddSplitPoints.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§initiator: Option<String>Optional. A user-supplied tag associated with the split points. For example, “initial_data_load”, “special_event_1”. Defaults to “CloudAddSplitPointsAPI” if not specified. The length of the tag must not exceed 50 characters, or else it is trimmed. Only valid UTF8 characters are allowed.
split_points: Option<Vec<SplitPoints>>Required. The split points to add.
Trait Implementations§
Source§impl Clone for AddSplitPointsRequest
impl Clone for AddSplitPointsRequest
Source§fn clone(&self) -> AddSplitPointsRequest
fn clone(&self) -> AddSplitPointsRequest
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 AddSplitPointsRequest
impl Debug for AddSplitPointsRequest
Source§impl Default for AddSplitPointsRequest
impl Default for AddSplitPointsRequest
Source§fn default() -> AddSplitPointsRequest
fn default() -> AddSplitPointsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddSplitPointsRequest
impl<'de> Deserialize<'de> for AddSplitPointsRequest
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 Serialize for AddSplitPointsRequest
impl Serialize for AddSplitPointsRequest
impl RequestValue for AddSplitPointsRequest
Auto Trait Implementations§
impl Freeze for AddSplitPointsRequest
impl RefUnwindSafe for AddSplitPointsRequest
impl Send for AddSplitPointsRequest
impl Sync for AddSplitPointsRequest
impl Unpin for AddSplitPointsRequest
impl UnwindSafe for AddSplitPointsRequest
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