pub struct PackConnectionUrlParamCredentialsParamsItem {
pub key: String,
pub value: String,
}
Expand description
PackConnectionUrlParamCredentialsParamsItem
JSON schema
{
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§key: String
§value: String
Trait Implementations§
Source§impl Clone for PackConnectionUrlParamCredentialsParamsItem
impl Clone for PackConnectionUrlParamCredentialsParamsItem
Source§fn clone(&self) -> PackConnectionUrlParamCredentialsParamsItem
fn clone(&self) -> PackConnectionUrlParamCredentialsParamsItem
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<'de> Deserialize<'de> for PackConnectionUrlParamCredentialsParamsItem
impl<'de> Deserialize<'de> for PackConnectionUrlParamCredentialsParamsItem
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 From<&PackConnectionUrlParamCredentialsParamsItem> for PackConnectionUrlParamCredentialsParamsItem
impl From<&PackConnectionUrlParamCredentialsParamsItem> for PackConnectionUrlParamCredentialsParamsItem
Source§fn from(value: &PackConnectionUrlParamCredentialsParamsItem) -> Self
fn from(value: &PackConnectionUrlParamCredentialsParamsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackConnectionUrlParamCredentialsParamsItem
impl RefUnwindSafe for PackConnectionUrlParamCredentialsParamsItem
impl Send for PackConnectionUrlParamCredentialsParamsItem
impl Sync for PackConnectionUrlParamCredentialsParamsItem
impl Unpin for PackConnectionUrlParamCredentialsParamsItem
impl UnwindSafe for PackConnectionUrlParamCredentialsParamsItem
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