pub struct ProjectTaskProperties {
pub errors: Vec<ODataError>,
pub state: Option<State>,
pub commands: Vec<CommandPropertiesUnion>,
pub client_data: Option<Value>,
}
Expand description
Base class for all types of DMS task properties. If task is not supported by current client, this object is returned.
Fields§
§errors: Vec<ODataError>
Array of errors. This is ignored if submitted.
state: Option<State>
The state of the task. This is ignored if submitted.
commands: Vec<CommandPropertiesUnion>
Array of command properties.
client_data: Option<Value>
Key value pairs of client data to attach meta data information to task
Implementations§
Trait Implementations§
Source§impl Clone for ProjectTaskProperties
impl Clone for ProjectTaskProperties
Source§fn clone(&self) -> ProjectTaskProperties
fn clone(&self) -> ProjectTaskProperties
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 ProjectTaskProperties
impl Debug for ProjectTaskProperties
Source§impl<'de> Deserialize<'de> for ProjectTaskProperties
impl<'de> Deserialize<'de> for ProjectTaskProperties
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 ProjectTaskProperties
impl PartialEq for ProjectTaskProperties
Source§impl Serialize for ProjectTaskProperties
impl Serialize for ProjectTaskProperties
impl StructuralPartialEq for ProjectTaskProperties
Auto Trait Implementations§
impl Freeze for ProjectTaskProperties
impl RefUnwindSafe for ProjectTaskProperties
impl Send for ProjectTaskProperties
impl Sync for ProjectTaskProperties
impl Unpin for ProjectTaskProperties
impl UnwindSafe for ProjectTaskProperties
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