pub struct FetchCallNotificationParams {
pub account_sid: String,
pub call_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method fetch_call_notification
Fields§
§account_sid: String
The SID of the Account that created the Call Notification resource to fetch.
call_sid: String
The Call SID of the Call Notification resource to fetch.
sid: String
The Twilio-provided string that uniquely identifies the Call Notification resource to fetch.
Trait Implementations§
Source§impl Clone for FetchCallNotificationParams
impl Clone for FetchCallNotificationParams
Source§fn clone(&self) -> FetchCallNotificationParams
fn clone(&self) -> FetchCallNotificationParams
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 FetchCallNotificationParams
impl RefUnwindSafe for FetchCallNotificationParams
impl Send for FetchCallNotificationParams
impl Sync for FetchCallNotificationParams
impl Unpin for FetchCallNotificationParams
impl UnwindSafe for FetchCallNotificationParams
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