pub struct ApiTrinoExtraCredentials {
pub password: String,
pub username: String,
}Expand description
ApiTrinoExtraCredentials
JSON schema
{
"type": "object",
"required": [
"password",
"username"
],
"properties": {
"password": {
"type": "string"
},
"username": {
"type": "string"
}
}
}Fields§
§password: String§username: StringTrait Implementations§
Source§impl Clone for ApiTrinoExtraCredentials
impl Clone for ApiTrinoExtraCredentials
Source§fn clone(&self) -> ApiTrinoExtraCredentials
fn clone(&self) -> ApiTrinoExtraCredentials
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 ApiTrinoExtraCredentials
impl Debug for ApiTrinoExtraCredentials
Source§impl<'de> Deserialize<'de> for ApiTrinoExtraCredentials
impl<'de> Deserialize<'de> for ApiTrinoExtraCredentials
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
Auto Trait Implementations§
impl Freeze for ApiTrinoExtraCredentials
impl RefUnwindSafe for ApiTrinoExtraCredentials
impl Send for ApiTrinoExtraCredentials
impl Sync for ApiTrinoExtraCredentials
impl Unpin for ApiTrinoExtraCredentials
impl UnsafeUnpin for ApiTrinoExtraCredentials
impl UnwindSafe for ApiTrinoExtraCredentials
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