pub struct BatchElementStatus {
pub order_id: Option<String>,
pub status: String,
pub error_message: Option<String>,
}Expand description
Status of a single element in a batch.
Fields§
§order_id: Option<String>Order ID (for place operations)
status: StringStatus message
error_message: Option<String>Error message (if failed)
Trait Implementations§
Source§impl Clone for BatchElementStatus
impl Clone for BatchElementStatus
Source§fn clone(&self) -> BatchElementStatus
fn clone(&self) -> BatchElementStatus
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 BatchElementStatus
impl Debug for BatchElementStatus
Source§impl<'de> Deserialize<'de> for BatchElementStatus
impl<'de> Deserialize<'de> for BatchElementStatus
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 BatchElementStatus
impl RefUnwindSafe for BatchElementStatus
impl Send for BatchElementStatus
impl Sync for BatchElementStatus
impl Unpin for BatchElementStatus
impl UnwindSafe for BatchElementStatus
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