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