pub struct CollectTelemetryDataResponse {
pub telemetry_data: Vec<String>,
}Expand description
The response body for the CollectTelemetryData action.
This type shall contain the properties found in the response body for the CollectTelemetryData
action.
Fields§
§telemetry_data: Vec<String>An array of links to the collected telemetry data.
This property shall contain an array of links to resources of type TelemetryData that represent
the collected telemetry data.
Trait Implementations§
Source§impl Debug for CollectTelemetryDataResponse
impl Debug for CollectTelemetryDataResponse
Source§impl<'de> Deserialize<'de> for CollectTelemetryDataResponse
impl<'de> Deserialize<'de> for CollectTelemetryDataResponse
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
Auto Trait Implementations§
impl Freeze for CollectTelemetryDataResponse
impl RefUnwindSafe for CollectTelemetryDataResponse
impl Send for CollectTelemetryDataResponse
impl Sync for CollectTelemetryDataResponse
impl Unpin for CollectTelemetryDataResponse
impl UnsafeUnpin for CollectTelemetryDataResponse
impl UnwindSafe for CollectTelemetryDataResponse
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