pub struct DeleteAlertRequestPath {
pub account_id: String,
pub alert_id: String,
}Fields§
§account_id: String- Example:
"U1234567".to_string()
alert_id: Stringorder_id returned from the original alert creation, or from the list of available alerts.
- Example:
"9876543210".to_string()
Trait Implementations§
Source§impl Clone for DeleteAlertRequestPath
impl Clone for DeleteAlertRequestPath
Source§fn clone(&self) -> DeleteAlertRequestPath
fn clone(&self) -> DeleteAlertRequestPath
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 DeleteAlertRequestPath
impl Debug for DeleteAlertRequestPath
Source§impl Default for DeleteAlertRequestPath
impl Default for DeleteAlertRequestPath
Source§impl PartialEq for DeleteAlertRequestPath
impl PartialEq for DeleteAlertRequestPath
Source§impl Validate for DeleteAlertRequestPath
impl Validate for DeleteAlertRequestPath
Source§impl<'v_a> ValidateArgs<'v_a> for DeleteAlertRequestPath
impl<'v_a> ValidateArgs<'v_a> for DeleteAlertRequestPath
impl StructuralPartialEq for DeleteAlertRequestPath
Auto Trait Implementations§
impl Freeze for DeleteAlertRequestPath
impl RefUnwindSafe for DeleteAlertRequestPath
impl Send for DeleteAlertRequestPath
impl Sync for DeleteAlertRequestPath
impl Unpin for DeleteAlertRequestPath
impl UnsafeUnpin for DeleteAlertRequestPath
impl UnwindSafe for DeleteAlertRequestPath
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