pub struct AlertCreationResponse {
pub order_id: Option<i32>,
pub order_status: Option<String>,
pub request_id: Option<i32>,
pub success: Option<bool>,
pub text: Option<String>,
pub warning_message: Option<String>,
}Fields§
§order_id: Option<i32>The tracking number of the alert. Alert identifier internally referenced as order id.
order_status: Option<String>Not applicable
request_id: Option<i32>Not applicable
success: Option<bool>Displays result status of alert request
text: Option<String>Response message to clarify submission status.
warning_message: Option<String>Returns ‘null’
Trait Implementations§
Source§impl Clone for AlertCreationResponse
impl Clone for AlertCreationResponse
Source§fn clone(&self) -> AlertCreationResponse
fn clone(&self) -> AlertCreationResponse
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 AlertCreationResponse
impl Debug for AlertCreationResponse
Source§impl Default for AlertCreationResponse
impl Default for AlertCreationResponse
Source§impl<'de> Deserialize<'de> for AlertCreationResponse
impl<'de> Deserialize<'de> for AlertCreationResponse
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 AlertCreationResponse
impl PartialEq for AlertCreationResponse
impl StructuralPartialEq for AlertCreationResponse
Auto Trait Implementations§
impl Freeze for AlertCreationResponse
impl RefUnwindSafe for AlertCreationResponse
impl Send for AlertCreationResponse
impl Sync for AlertCreationResponse
impl Unpin for AlertCreationResponse
impl UnsafeUnpin for AlertCreationResponse
impl UnwindSafe for AlertCreationResponse
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