pub struct CreatePlayHtCredentialDto {
pub provider: Provider,
pub api_key: String,
pub user_id: String,
pub name: Option<String>,
}Fields§
§provider: Provider§api_key: StringThis is not returned in the API.
user_id: String§name: Option<String>This is the name of credential. This is just for your reference.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePlayHtCredentialDto
impl Clone for CreatePlayHtCredentialDto
Source§fn clone(&self) -> CreatePlayHtCredentialDto
fn clone(&self) -> CreatePlayHtCredentialDto
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 moreSource§impl Debug for CreatePlayHtCredentialDto
impl Debug for CreatePlayHtCredentialDto
Source§impl Default for CreatePlayHtCredentialDto
impl Default for CreatePlayHtCredentialDto
Source§fn default() -> CreatePlayHtCredentialDto
fn default() -> CreatePlayHtCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreatePlayHtCredentialDto
impl<'de> Deserialize<'de> for CreatePlayHtCredentialDto
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 CreatePlayHtCredentialDto
Auto Trait Implementations§
impl Freeze for CreatePlayHtCredentialDto
impl RefUnwindSafe for CreatePlayHtCredentialDto
impl Send for CreatePlayHtCredentialDto
impl Sync for CreatePlayHtCredentialDto
impl Unpin for CreatePlayHtCredentialDto
impl UnwindSafe for CreatePlayHtCredentialDto
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