pub struct UpdateAccountParams {
pub sid: String,
pub friendly_name: Option<String>,
pub status: Option<String>,
}
Expand description
struct for passing parameters to the method update_account
Fields§
§sid: String
The Account Sid that uniquely identifies the account to update
friendly_name: Option<String>
Update the human-readable description of this Account
status: Option<String>
Trait Implementations§
Source§impl Clone for UpdateAccountParams
impl Clone for UpdateAccountParams
Source§fn clone(&self) -> UpdateAccountParams
fn clone(&self) -> UpdateAccountParams
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 UpdateAccountParams
impl RefUnwindSafe for UpdateAccountParams
impl Send for UpdateAccountParams
impl Sync for UpdateAccountParams
impl Unpin for UpdateAccountParams
impl UnwindSafe for UpdateAccountParams
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