pub struct BatchCreateResult {
pub error: Option<BatchCreateError>,
pub match_result: Option<MatchResult>,
pub order_id: Option<Uuid>,
}Expand description
BatchCreateResult
JSON schema
{
"type": "object",
"properties": {
"error": {
"$ref": "#/components/schemas/BatchCreateError"
},
"match_result": {
"$ref": "#/components/schemas/MatchResult"
},
"order_id": {
"description": "Created order UUID",
"examples": [
"123e4567-e89b-12d3-a456-426614174000"
],
"type": [
"string",
"null"
],
"format": "uuid"
}
}
}Fields§
§error: Option<BatchCreateError>§match_result: Option<MatchResult>§order_id: Option<Uuid>Created order UUID
Trait Implementations§
Source§impl Clone for BatchCreateResult
impl Clone for BatchCreateResult
Source§fn clone(&self) -> BatchCreateResult
fn clone(&self) -> BatchCreateResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchCreateResult
impl Debug for BatchCreateResult
Source§impl Default for BatchCreateResult
impl Default for BatchCreateResult
Source§impl<'de> Deserialize<'de> for BatchCreateResult
impl<'de> Deserialize<'de> for BatchCreateResult
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 BatchCreateResult
impl RefUnwindSafe for BatchCreateResult
impl Send for BatchCreateResult
impl Sync for BatchCreateResult
impl Unpin for BatchCreateResult
impl UnsafeUnpin for BatchCreateResult
impl UnwindSafe for BatchCreateResult
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