pub struct ProjectTaskProperties {
pub task_type: TaskType,
pub errors: Vec<ODataError>,
pub state: Option<State>,
pub commands: Vec<CommandProperties>,
pub client_data: Option<Value>,
}
Expand description
Base class for all types of DMS (classic) task properties. If task is not supported by current client, this object is returned.
Fields§
§task_type: TaskType
Task type.
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<CommandProperties>
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 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 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<ProjectTaskProperties> for ProjectTaskProperties
impl PartialEq<ProjectTaskProperties> for ProjectTaskProperties
source§fn eq(&self, other: &ProjectTaskProperties) -> bool
fn eq(&self, other: &ProjectTaskProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ProjectTaskProperties
impl Serialize for ProjectTaskProperties
impl StructuralPartialEq for ProjectTaskProperties
Auto Trait Implementations§
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