pub struct PackConnectionCustomPatch {
pub params_to_patch: Vec<PackConnectionCustomPatchParamsToPatchItem>,
pub type_: PackConnectionCustomPatchType,
}
Expand description
PackConnectionCustomPatch
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": [
"custom"
],
"x-tsType": "PackConnectionType.Custom"
}
},
"additionalProperties": false,
"x-schema-name": "PackConnectionCustomPatch"
}
Fields§
§params_to_patch: Vec<PackConnectionCustomPatchParamsToPatchItem>
§type_: PackConnectionCustomPatchType
Trait Implementations§
Source§impl Clone for PackConnectionCustomPatch
impl Clone for PackConnectionCustomPatch
Source§fn clone(&self) -> PackConnectionCustomPatch
fn clone(&self) -> PackConnectionCustomPatch
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 PackConnectionCustomPatch
impl Debug for PackConnectionCustomPatch
Source§impl<'de> Deserialize<'de> for PackConnectionCustomPatch
impl<'de> Deserialize<'de> for PackConnectionCustomPatch
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<&PackConnectionCustomPatch> for PackConnectionCustomPatch
impl From<&PackConnectionCustomPatch> for PackConnectionCustomPatch
Source§fn from(value: &PackConnectionCustomPatch) -> Self
fn from(value: &PackConnectionCustomPatch) -> Self
Converts to this type from the input type.
Source§impl From<PackConnectionCustomPatch> for PatchPackSystemConnectionRequest
impl From<PackConnectionCustomPatch> for PatchPackSystemConnectionRequest
Source§fn from(value: PackConnectionCustomPatch) -> Self
fn from(value: PackConnectionCustomPatch) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackConnectionCustomPatch
impl RefUnwindSafe for PackConnectionCustomPatch
impl Send for PackConnectionCustomPatch
impl Sync for PackConnectionCustomPatch
impl Unpin for PackConnectionCustomPatch
impl UnwindSafe for PackConnectionCustomPatch
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