pub struct UpdateSiprecParams {
pub account_sid: String,
pub call_sid: String,
pub sid: String,
pub status: String,
}
Expand description
struct for passing parameters to the method update_siprec
Fields§
§account_sid: String
The SID of the Account that created this Siprec resource.
call_sid: String
The SID of the Call the Siprec resource is associated with.
sid: String
The SID of the Siprec resource, or the name
used when creating the resource
status: String
Trait Implementations§
Source§impl Clone for UpdateSiprecParams
impl Clone for UpdateSiprecParams
Source§fn clone(&self) -> UpdateSiprecParams
fn clone(&self) -> UpdateSiprecParams
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 UpdateSiprecParams
impl RefUnwindSafe for UpdateSiprecParams
impl Send for UpdateSiprecParams
impl Sync for UpdateSiprecParams
impl Unpin for UpdateSiprecParams
impl UnwindSafe for UpdateSiprecParams
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