pub struct CloneOrderResponse {
pub order: Option<Box<Order>>,
pub errors: Option<Vec<Error>>,
}Expand description
CloneOrderResponse : Defines the fields that are included in the response body of a request to the CloneOrder endpoint.
Fields§
§order: Option<Box<Order>>§errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl CloneOrderResponse
impl CloneOrderResponse
Sourcepub fn new() -> CloneOrderResponse
pub fn new() -> CloneOrderResponse
Defines the fields that are included in the response body of a request to the CloneOrder endpoint.
Trait Implementations§
Source§impl Clone for CloneOrderResponse
impl Clone for CloneOrderResponse
Source§fn clone(&self) -> CloneOrderResponse
fn clone(&self) -> CloneOrderResponse
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 CloneOrderResponse
impl Debug for CloneOrderResponse
Source§impl Default for CloneOrderResponse
impl Default for CloneOrderResponse
Source§fn default() -> CloneOrderResponse
fn default() -> CloneOrderResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CloneOrderResponse
impl<'de> Deserialize<'de> for CloneOrderResponse
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 CloneOrderResponse
impl PartialEq for CloneOrderResponse
Source§impl Serialize for CloneOrderResponse
impl Serialize for CloneOrderResponse
impl StructuralPartialEq for CloneOrderResponse
Auto Trait Implementations§
impl Freeze for CloneOrderResponse
impl RefUnwindSafe for CloneOrderResponse
impl Send for CloneOrderResponse
impl Sync for CloneOrderResponse
impl Unpin for CloneOrderResponse
impl UnsafeUnpin for CloneOrderResponse
impl UnwindSafe for CloneOrderResponse
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