pub struct UpdateInflectionAiCredentialDto {
pub api_key: Option<String>,
pub name: Option<String>,
}
Fields§
§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§
Trait Implementations§
Source§impl Clone for UpdateInflectionAiCredentialDto
impl Clone for UpdateInflectionAiCredentialDto
Source§fn clone(&self) -> UpdateInflectionAiCredentialDto
fn clone(&self) -> UpdateInflectionAiCredentialDto
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 Default for UpdateInflectionAiCredentialDto
impl Default for UpdateInflectionAiCredentialDto
Source§fn default() -> UpdateInflectionAiCredentialDto
fn default() -> UpdateInflectionAiCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateInflectionAiCredentialDto
impl<'de> Deserialize<'de> for UpdateInflectionAiCredentialDto
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 UpdateInflectionAiCredentialDto
impl PartialEq for UpdateInflectionAiCredentialDto
Source§fn eq(&self, other: &UpdateInflectionAiCredentialDto) -> bool
fn eq(&self, other: &UpdateInflectionAiCredentialDto) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateInflectionAiCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateInflectionAiCredentialDto
impl RefUnwindSafe for UpdateInflectionAiCredentialDto
impl Send for UpdateInflectionAiCredentialDto
impl Sync for UpdateInflectionAiCredentialDto
impl Unpin for UpdateInflectionAiCredentialDto
impl UnwindSafe for UpdateInflectionAiCredentialDto
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