pub struct UpdateMakeCredentialDto {
pub team_id: Option<String>,
pub region: Option<String>,
pub api_key: Option<String>,
pub name: Option<String>,
}
Fields§
§team_id: Option<String>
Team ID
region: Option<String>
Region of your application. For example: eu1, eu2, us1, us2
api_key: Option<String>
This is not returned in the API.
name: Option<String>
This is the name of credential. This is just for your reference.
Implementations§
Source§impl UpdateMakeCredentialDto
impl UpdateMakeCredentialDto
pub fn new() -> UpdateMakeCredentialDto
Trait Implementations§
Source§impl Clone for UpdateMakeCredentialDto
impl Clone for UpdateMakeCredentialDto
Source§fn clone(&self) -> UpdateMakeCredentialDto
fn clone(&self) -> UpdateMakeCredentialDto
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 UpdateMakeCredentialDto
impl Debug for UpdateMakeCredentialDto
Source§impl Default for UpdateMakeCredentialDto
impl Default for UpdateMakeCredentialDto
Source§fn default() -> UpdateMakeCredentialDto
fn default() -> UpdateMakeCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMakeCredentialDto
impl<'de> Deserialize<'de> for UpdateMakeCredentialDto
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
Source§impl PartialEq for UpdateMakeCredentialDto
impl PartialEq for UpdateMakeCredentialDto
Source§impl Serialize for UpdateMakeCredentialDto
impl Serialize for UpdateMakeCredentialDto
impl StructuralPartialEq for UpdateMakeCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateMakeCredentialDto
impl RefUnwindSafe for UpdateMakeCredentialDto
impl Send for UpdateMakeCredentialDto
impl Sync for UpdateMakeCredentialDto
impl Unpin for UpdateMakeCredentialDto
impl UnwindSafe for UpdateMakeCredentialDto
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