pub struct AlertDeletionResponse {
pub failure_list: Option<String>,
pub order_id: Option<i32>,
pub request_id: Option<i32>,
pub success: Option<bool>,
pub text: Option<String>,
}Fields§
§failure_list: Option<String>If “success” returns false, will list failed order Ids
order_id: Option<i32>The tracking number of the alert. Occasssionally referenced as the alertId or alert_id.
request_id: Option<i32>Not applicable
success: Option<bool>Displays result status of alert request
text: Option<String>Response message to clarify success status reason.
Trait Implementations§
Source§impl Clone for AlertDeletionResponse
impl Clone for AlertDeletionResponse
Source§fn clone(&self) -> AlertDeletionResponse
fn clone(&self) -> AlertDeletionResponse
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 AlertDeletionResponse
impl Debug for AlertDeletionResponse
Source§impl Default for AlertDeletionResponse
impl Default for AlertDeletionResponse
Source§impl<'de> Deserialize<'de> for AlertDeletionResponse
impl<'de> Deserialize<'de> for AlertDeletionResponse
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 AlertDeletionResponse
impl PartialEq for AlertDeletionResponse
impl StructuralPartialEq for AlertDeletionResponse
Auto Trait Implementations§
impl Freeze for AlertDeletionResponse
impl RefUnwindSafe for AlertDeletionResponse
impl Send for AlertDeletionResponse
impl Sync for AlertDeletionResponse
impl Unpin for AlertDeletionResponse
impl UnsafeUnpin for AlertDeletionResponse
impl UnwindSafe for AlertDeletionResponse
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