pub struct CommandProperties {
pub errors: Vec<ODataError>,
pub state: Option<State>,
}
Expand description
Base class for all types of DMS command properties. If command 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 command. This is ignored if submitted.
Implementations§
Trait Implementations§
Source§impl Clone for CommandProperties
impl Clone for CommandProperties
Source§fn clone(&self) -> CommandProperties
fn clone(&self) -> CommandProperties
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 CommandProperties
impl Debug for CommandProperties
Source§impl<'de> Deserialize<'de> for CommandProperties
impl<'de> Deserialize<'de> for CommandProperties
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 CommandProperties
impl PartialEq for CommandProperties
Source§impl Serialize for CommandProperties
impl Serialize for CommandProperties
impl StructuralPartialEq for CommandProperties
Auto Trait Implementations§
impl Freeze for CommandProperties
impl RefUnwindSafe for CommandProperties
impl Send for CommandProperties
impl Sync for CommandProperties
impl Unpin for CommandProperties
impl UnwindSafe for CommandProperties
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