pub struct ManagedRuntimeEventInvolvedObject {
pub details: Option<Value>,
pub id: Option<String>,
pub kind: Option<String>,
pub machine_id: Option<String>,
pub name: Option<String>,
pub replica_id: Option<String>,
}Expand description
ManagedRuntimeEventInvolvedObject
JSON schema
{
"type": "object",
"properties": {
"details": {
"$ref": "#/components/schemas/Value"
},
"id": {
"type": [
"string",
"null"
]
},
"kind": {
"type": [
"string",
"null"
]
},
"machineId": {
"type": [
"string",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"replicaId": {
"type": [
"string",
"null"
]
}
}
}Fields§
§details: Option<Value>§id: Option<String>§kind: Option<String>§machine_id: Option<String>§name: Option<String>§replica_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ManagedRuntimeEventInvolvedObject
impl Clone for ManagedRuntimeEventInvolvedObject
Source§fn clone(&self) -> ManagedRuntimeEventInvolvedObject
fn clone(&self) -> ManagedRuntimeEventInvolvedObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ManagedRuntimeEventInvolvedObject
impl<'de> Deserialize<'de> for ManagedRuntimeEventInvolvedObject
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<&ManagedRuntimeEventInvolvedObject> for ManagedRuntimeEventInvolvedObject
impl From<&ManagedRuntimeEventInvolvedObject> for ManagedRuntimeEventInvolvedObject
Source§fn from(value: &ManagedRuntimeEventInvolvedObject) -> Self
fn from(value: &ManagedRuntimeEventInvolvedObject) -> Self
Converts to this type from the input type.
Source§impl From<ManagedRuntimeEventInvolvedObject> for ManagedRuntimeEventInvolvedObject
impl From<ManagedRuntimeEventInvolvedObject> for ManagedRuntimeEventInvolvedObject
Source§fn from(value: ManagedRuntimeEventInvolvedObject) -> Self
fn from(value: ManagedRuntimeEventInvolvedObject) -> Self
Converts to this type from the input type.
Source§impl TryFrom<ManagedRuntimeEventInvolvedObject> for ManagedRuntimeEventInvolvedObject
impl TryFrom<ManagedRuntimeEventInvolvedObject> for ManagedRuntimeEventInvolvedObject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: ManagedRuntimeEventInvolvedObject,
) -> Result<Self, ConversionError>
fn try_from( value: ManagedRuntimeEventInvolvedObject, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ManagedRuntimeEventInvolvedObject
impl RefUnwindSafe for ManagedRuntimeEventInvolvedObject
impl Send for ManagedRuntimeEventInvolvedObject
impl Sync for ManagedRuntimeEventInvolvedObject
impl Unpin for ManagedRuntimeEventInvolvedObject
impl UnsafeUnpin for ManagedRuntimeEventInvolvedObject
impl UnwindSafe for ManagedRuntimeEventInvolvedObject
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