pub struct UpdateCallRecordingParams {
pub account_sid: String,
pub call_sid: String,
pub sid: String,
pub status: String,
pub pause_behavior: Option<String>,
}
Expand description
struct for passing parameters to the method update_call_recording
Fields§
§account_sid: String
The SID of the Account that created the Recording resource to update.
call_sid: String
The Call SID of the resource to update.
sid: String
The Twilio-provided string that uniquely identifies the Recording resource to update.
status: String
§pause_behavior: Option<String>
Whether to record during a pause. Can be: skip
or silence
and the default is silence
. skip
does not record during the pause period, while silence
will replace the actual audio of the call with silence during the pause period. This parameter only applies when setting status
is set to paused
.
Trait Implementations§
Source§impl Clone for UpdateCallRecordingParams
impl Clone for UpdateCallRecordingParams
Source§fn clone(&self) -> UpdateCallRecordingParams
fn clone(&self) -> UpdateCallRecordingParams
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 UpdateCallRecordingParams
impl RefUnwindSafe for UpdateCallRecordingParams
impl Send for UpdateCallRecordingParams
impl Sync for UpdateCallRecordingParams
impl Unpin for UpdateCallRecordingParams
impl UnwindSafe for UpdateCallRecordingParams
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