pub struct OrderConfirmation {
pub order_id: Option<String>,
pub message: Option<String>,
}Expand description
Confirmation details for a successfully placed/modified order.
Fields§
§order_id: Option<String>The assigned order ID.
message: Option<String>Confirmation message.
Trait Implementations§
Source§impl Debug for OrderConfirmation
impl Debug for OrderConfirmation
Source§impl<'de> Deserialize<'de> for OrderConfirmation
impl<'de> Deserialize<'de> for OrderConfirmation
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 OrderConfirmation
impl RefUnwindSafe for OrderConfirmation
impl Send for OrderConfirmation
impl Sync for OrderConfirmation
impl Unpin for OrderConfirmation
impl UnsafeUnpin for OrderConfirmation
impl UnwindSafe for OrderConfirmation
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