pub struct UpdateVonageCredentialDto {
pub api_secret: Option<String>,
pub name: Option<String>,
pub api_key: Option<String>,
}
Fields§
§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.
api_key: Option<String>
Implementations§
Source§impl UpdateVonageCredentialDto
impl UpdateVonageCredentialDto
pub fn new() -> UpdateVonageCredentialDto
Trait Implementations§
Source§impl Clone for UpdateVonageCredentialDto
impl Clone for UpdateVonageCredentialDto
Source§fn clone(&self) -> UpdateVonageCredentialDto
fn clone(&self) -> UpdateVonageCredentialDto
Returns a duplicate 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 moreSource§impl Debug for UpdateVonageCredentialDto
impl Debug for UpdateVonageCredentialDto
Source§impl Default for UpdateVonageCredentialDto
impl Default for UpdateVonageCredentialDto
Source§fn default() -> UpdateVonageCredentialDto
fn default() -> UpdateVonageCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateVonageCredentialDto
impl<'de> Deserialize<'de> for UpdateVonageCredentialDto
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 UpdateVonageCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateVonageCredentialDto
impl RefUnwindSafe for UpdateVonageCredentialDto
impl Send for UpdateVonageCredentialDto
impl Sync for UpdateVonageCredentialDto
impl Unpin for UpdateVonageCredentialDto
impl UnwindSafe for UpdateVonageCredentialDto
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