pub struct DeleteApplicationParams {
pub account_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method delete_application
Fields§
§account_sid: String
The SID of the Account that created the Application resources to delete.
sid: String
The Twilio-provided string that uniquely identifies the Application resource to delete.
Trait Implementations§
Source§impl Clone for DeleteApplicationParams
impl Clone for DeleteApplicationParams
Source§fn clone(&self) -> DeleteApplicationParams
fn clone(&self) -> DeleteApplicationParams
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for DeleteApplicationParams
impl RefUnwindSafe for DeleteApplicationParams
impl Send for DeleteApplicationParams
impl Sync for DeleteApplicationParams
impl Unpin for DeleteApplicationParams
impl UnwindSafe for DeleteApplicationParams
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