pub struct UpdateConferenceRecordingParams {
pub account_sid: String,
pub conference_sid: String,
pub sid: String,
pub status: String,
pub pause_behavior: Option<String>,
}
Expand description
struct for passing parameters to the method update_conference_recording
Fields§
§account_sid: String
The SID of the Account that created the Conference Recording resource to update.
conference_sid: String
The Conference SID that identifies the conference associated with the recording to update.
sid: String
The Twilio-provided string that uniquely identifies the Conference Recording resource to update. Use Twilio.CURRENT
to reference the current active recording.
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 UpdateConferenceRecordingParams
impl Clone for UpdateConferenceRecordingParams
Source§fn clone(&self) -> UpdateConferenceRecordingParams
fn clone(&self) -> UpdateConferenceRecordingParams
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 UpdateConferenceRecordingParams
impl RefUnwindSafe for UpdateConferenceRecordingParams
impl Send for UpdateConferenceRecordingParams
impl Sync for UpdateConferenceRecordingParams
impl Unpin for UpdateConferenceRecordingParams
impl UnwindSafe for UpdateConferenceRecordingParams
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