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