pub struct BatchOperationResult {
pub list: Vec<BatchOrderResult>,
pub ret_ext_info: Option<BatchRetExtInfo>,
}Expand description
Batch operation result with error info.
Fields§
§list: Vec<BatchOrderResult>List of successful results.
ret_ext_info: Option<BatchRetExtInfo>Extended info with errors.
Trait Implementations§
Source§impl Clone for BatchOperationResult
impl Clone for BatchOperationResult
Source§fn clone(&self) -> BatchOperationResult
fn clone(&self) -> BatchOperationResult
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 BatchOperationResult
impl Debug for BatchOperationResult
Source§impl<'de> Deserialize<'de> for BatchOperationResult
impl<'de> Deserialize<'de> for BatchOperationResult
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
Auto Trait Implementations§
impl Freeze for BatchOperationResult
impl RefUnwindSafe for BatchOperationResult
impl Send for BatchOperationResult
impl Sync for BatchOperationResult
impl Unpin for BatchOperationResult
impl UnwindSafe for BatchOperationResult
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