pub struct GetTelemetrySubscriptionsResponse<'a> {
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<&'a str>,
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<&'a str>§unknown_tagged_fields: UnknownTaggedFieldsImplementations§
Source§impl GetTelemetrySubscriptionsResponse<'_>
impl GetTelemetrySubscriptionsResponse<'_>
pub fn to_owned(&self) -> GetTelemetrySubscriptionsResponse
Trait Implementations§
Source§impl<'a> Clone for GetTelemetrySubscriptionsResponse<'a>
impl<'a> Clone for GetTelemetrySubscriptionsResponse<'a>
Source§fn clone(&self) -> GetTelemetrySubscriptionsResponse<'a>
fn clone(&self) -> GetTelemetrySubscriptionsResponse<'a>
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<'a> Debug for GetTelemetrySubscriptionsResponse<'a>
impl<'a> Debug for GetTelemetrySubscriptionsResponse<'a>
Source§impl<'de> DecodeBorrow<'de> for GetTelemetrySubscriptionsResponse<'de>
impl<'de> DecodeBorrow<'de> for GetTelemetrySubscriptionsResponse<'de>
fn decode_borrow( buf: &mut &'de [u8], version: i16, ) -> Result<Self, ProtocolError>
Source§impl<'a> Default for GetTelemetrySubscriptionsResponse<'a>
impl<'a> Default for GetTelemetrySubscriptionsResponse<'a>
Source§fn default() -> GetTelemetrySubscriptionsResponse<'a>
fn default() -> GetTelemetrySubscriptionsResponse<'a>
Returns the “default value” for a type. Read more
Source§impl Encode for GetTelemetrySubscriptionsResponse<'_>
impl Encode for GetTelemetrySubscriptionsResponse<'_>
impl<'a> Eq for GetTelemetrySubscriptionsResponse<'a>
Source§impl<'a> PartialEq for GetTelemetrySubscriptionsResponse<'a>
impl<'a> PartialEq for GetTelemetrySubscriptionsResponse<'a>
Source§fn eq(&self, other: &GetTelemetrySubscriptionsResponse<'a>) -> bool
fn eq(&self, other: &GetTelemetrySubscriptionsResponse<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for GetTelemetrySubscriptionsResponse<'a>
Auto Trait Implementations§
impl<'a> Freeze for GetTelemetrySubscriptionsResponse<'a>
impl<'a> RefUnwindSafe for GetTelemetrySubscriptionsResponse<'a>
impl<'a> Send for GetTelemetrySubscriptionsResponse<'a>
impl<'a> Sync for GetTelemetrySubscriptionsResponse<'a>
impl<'a> Unpin for GetTelemetrySubscriptionsResponse<'a>
impl<'a> UnsafeUnpin for GetTelemetrySubscriptionsResponse<'a>
impl<'a> UnwindSafe for GetTelemetrySubscriptionsResponse<'a>
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