pub struct GetTelemetrySubscriptionsResponse {
pub throttle_time_ms: i32,
pub error_code: i16,
pub client_instance_id: Uuid,
pub subscription_id: i32,
pub accepted_compression_types: Vec<i8>,
pub push_interval_ms: i32,
pub telemetry_max_bytes: i32,
pub delta_temporality: bool,
pub requested_metrics: Vec<String>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§throttle_time_ms: i32§error_code: i16§client_instance_id: Uuid§subscription_id: i32§accepted_compression_types: Vec<i8>§push_interval_ms: i32§telemetry_max_bytes: i32§delta_temporality: bool§requested_metrics: Vec<String>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for GetTelemetrySubscriptionsResponse
impl Clone for GetTelemetrySubscriptionsResponse
Source§fn clone(&self) -> GetTelemetrySubscriptionsResponse
fn clone(&self) -> GetTelemetrySubscriptionsResponse
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 Decode<'_> for GetTelemetrySubscriptionsResponse
impl Decode<'_> for GetTelemetrySubscriptionsResponse
Source§impl Default for GetTelemetrySubscriptionsResponse
impl Default for GetTelemetrySubscriptionsResponse
Source§fn default() -> GetTelemetrySubscriptionsResponse
fn default() -> GetTelemetrySubscriptionsResponse
Returns the “default value” for a type. Read more
impl Eq for GetTelemetrySubscriptionsResponse
Source§impl PartialEq for GetTelemetrySubscriptionsResponse
impl PartialEq for GetTelemetrySubscriptionsResponse
Source§fn eq(&self, other: &GetTelemetrySubscriptionsResponse) -> bool
fn eq(&self, other: &GetTelemetrySubscriptionsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTelemetrySubscriptionsResponse
Auto Trait Implementations§
impl Freeze for GetTelemetrySubscriptionsResponse
impl RefUnwindSafe for GetTelemetrySubscriptionsResponse
impl Send for GetTelemetrySubscriptionsResponse
impl Sync for GetTelemetrySubscriptionsResponse
impl Unpin for GetTelemetrySubscriptionsResponse
impl UnsafeUnpin for GetTelemetrySubscriptionsResponse
impl UnwindSafe for GetTelemetrySubscriptionsResponse
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