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