pub struct PackConnectionUrlParamPatch {
pub params_to_patch: Vec<PackConnectionUrlParamPatchParamsToPatchItem>,
pub type_: PackConnectionUrlParamPatchType,
}
Expand description
PackConnectionUrlParamPatch
JSON schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"paramsToPatch": {
"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": "PackConnectionUrlParamPatch"
}
Fields§
§params_to_patch: Vec<PackConnectionUrlParamPatchParamsToPatchItem>
§type_: PackConnectionUrlParamPatchType
Trait Implementations§
Source§impl Clone for PackConnectionUrlParamPatch
impl Clone for PackConnectionUrlParamPatch
Source§fn clone(&self) -> PackConnectionUrlParamPatch
fn clone(&self) -> PackConnectionUrlParamPatch
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 PackConnectionUrlParamPatch
impl Debug for PackConnectionUrlParamPatch
Source§impl<'de> Deserialize<'de> for PackConnectionUrlParamPatch
impl<'de> Deserialize<'de> for PackConnectionUrlParamPatch
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<&PackConnectionUrlParamPatch> for PackConnectionUrlParamPatch
impl From<&PackConnectionUrlParamPatch> for PackConnectionUrlParamPatch
Source§fn from(value: &PackConnectionUrlParamPatch) -> Self
fn from(value: &PackConnectionUrlParamPatch) -> Self
Converts to this type from the input type.
Source§impl From<PackConnectionUrlParamPatch> for PatchPackSystemConnectionRequest
impl From<PackConnectionUrlParamPatch> for PatchPackSystemConnectionRequest
Source§fn from(value: PackConnectionUrlParamPatch) -> Self
fn from(value: PackConnectionUrlParamPatch) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackConnectionUrlParamPatch
impl RefUnwindSafe for PackConnectionUrlParamPatch
impl Send for PackConnectionUrlParamPatch
impl Sync for PackConnectionUrlParamPatch
impl Unpin for PackConnectionUrlParamPatch
impl UnwindSafe for PackConnectionUrlParamPatch
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