pub struct UpdateTwilioCredentialDto {
pub auth_token: Option<String>,
pub api_key: Option<String>,
pub api_secret: Option<String>,
pub name: Option<String>,
pub account_sid: Option<String>,
}
Fields§
§auth_token: Option<String>
This is not returned in the API.
api_key: Option<String>
This is not returned in the API.
api_secret: Option<String>
This is not returned in the API.
name: Option<String>
This is the name of credential. This is just for your reference.
account_sid: Option<String>
Implementations§
Source§impl UpdateTwilioCredentialDto
impl UpdateTwilioCredentialDto
pub fn new() -> UpdateTwilioCredentialDto
Trait Implementations§
Source§impl Clone for UpdateTwilioCredentialDto
impl Clone for UpdateTwilioCredentialDto
Source§fn clone(&self) -> UpdateTwilioCredentialDto
fn clone(&self) -> UpdateTwilioCredentialDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateTwilioCredentialDto
impl Debug for UpdateTwilioCredentialDto
Source§impl Default for UpdateTwilioCredentialDto
impl Default for UpdateTwilioCredentialDto
Source§fn default() -> UpdateTwilioCredentialDto
fn default() -> UpdateTwilioCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTwilioCredentialDto
impl<'de> Deserialize<'de> for UpdateTwilioCredentialDto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for UpdateTwilioCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateTwilioCredentialDto
impl RefUnwindSafe for UpdateTwilioCredentialDto
impl Send for UpdateTwilioCredentialDto
impl Sync for UpdateTwilioCredentialDto
impl Unpin for UpdateTwilioCredentialDto
impl UnwindSafe for UpdateTwilioCredentialDto
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