pub struct UpdateMessageParams {
pub account_sid: String,
pub sid: String,
pub body: Option<String>,
pub status: Option<String>,
}
Expand description
struct for passing parameters to the method update_message
Fields§
§account_sid: String
The SID of the Account that created the Message resources to update.
sid: String
The SID of the Message resource to be updated
body: Option<String>
The new body
of the Message resource. To redact the text content of a Message, this parameter’s value must be an empty string
status: Option<String>
Trait Implementations§
Source§impl Clone for UpdateMessageParams
impl Clone for UpdateMessageParams
Source§fn clone(&self) -> UpdateMessageParams
fn clone(&self) -> UpdateMessageParams
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 UpdateMessageParams
impl RefUnwindSafe for UpdateMessageParams
impl Send for UpdateMessageParams
impl Sync for UpdateMessageParams
impl Unpin for UpdateMessageParams
impl UnwindSafe for UpdateMessageParams
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