pub struct CreateMessageFeedbackParams {
pub account_sid: String,
pub message_sid: String,
pub outcome: Option<String>,
}
Expand description
struct for passing parameters to the method create_message_feedback
Fields§
§account_sid: String
The SID of the Account associated with the Message resource for which to create MessageFeedback.
message_sid: String
The SID of the Message resource for which to create MessageFeedback.
outcome: Option<String>
Trait Implementations§
Source§impl Clone for CreateMessageFeedbackParams
impl Clone for CreateMessageFeedbackParams
Source§fn clone(&self) -> CreateMessageFeedbackParams
fn clone(&self) -> CreateMessageFeedbackParams
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 CreateMessageFeedbackParams
impl RefUnwindSafe for CreateMessageFeedbackParams
impl Send for CreateMessageFeedbackParams
impl Sync for CreateMessageFeedbackParams
impl Unpin for CreateMessageFeedbackParams
impl UnwindSafe for CreateMessageFeedbackParams
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