pub struct DataPlanRequest {
pub id: String,
pub source_ids: Option<Vec<SourceId>>,
pub planning_policy: PlanningPolicy,
}Fields§
§id: String§source_ids: Option<Vec<SourceId>>§planning_policy: PlanningPolicyImplementations§
Trait Implementations§
Source§impl Clone for DataPlanRequest
impl Clone for DataPlanRequest
Source§fn clone(&self) -> DataPlanRequest
fn clone(&self) -> DataPlanRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataPlanRequest
impl Debug for DataPlanRequest
Source§impl<'de> Deserialize<'de> for DataPlanRequest
impl<'de> Deserialize<'de> for DataPlanRequest
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
impl Eq for DataPlanRequest
Source§impl PartialEq for DataPlanRequest
impl PartialEq for DataPlanRequest
Source§fn eq(&self, other: &DataPlanRequest) -> bool
fn eq(&self, other: &DataPlanRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataPlanRequest
impl Serialize for DataPlanRequest
impl StructuralPartialEq for DataPlanRequest
Auto Trait Implementations§
impl Freeze for DataPlanRequest
impl RefUnwindSafe for DataPlanRequest
impl Send for DataPlanRequest
impl Sync for DataPlanRequest
impl Unpin for DataPlanRequest
impl UnsafeUnpin for DataPlanRequest
impl UnwindSafe for DataPlanRequest
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