pub struct ResultViewV1 {
pub core: Option<ResultCoreV1>,
pub distribution: Option<DistributionTelemetry>,
pub actions: Option<ActionTelemetry>,
pub auras: Option<AuraTelemetry>,
pub resources: Option<ResourceTelemetry>,
pub cooldowns: Option<CooldownTelemetry>,
pub execution: Option<ExecutionData>,
pub damage_profile: Option<DamageProfileData>,
pub dictionary: Option<DictionaryView>,
pub instrumentation_coverage: Option<InstrumentationCoverage>,
}Fields§
§core: Option<ResultCoreV1>§distribution: Option<DistributionTelemetry>§actions: Option<ActionTelemetry>§auras: Option<AuraTelemetry>§resources: Option<ResourceTelemetry>§cooldowns: Option<CooldownTelemetry>§execution: Option<ExecutionData>§damage_profile: Option<DamageProfileData>§dictionary: Option<DictionaryView>§instrumentation_coverage: Option<InstrumentationCoverage>Trait Implementations§
Source§impl Clone for ResultViewV1
impl Clone for ResultViewV1
Source§fn clone(&self) -> ResultViewV1
fn clone(&self) -> ResultViewV1
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 ResultViewV1
impl Debug for ResultViewV1
Source§impl Default for ResultViewV1
impl Default for ResultViewV1
Source§impl Message for ResultViewV1
impl Message for ResultViewV1
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for ResultViewV1
impl PartialEq for ResultViewV1
impl StructuralPartialEq for ResultViewV1
Auto Trait Implementations§
impl Freeze for ResultViewV1
impl RefUnwindSafe for ResultViewV1
impl Send for ResultViewV1
impl Sync for ResultViewV1
impl Unpin for ResultViewV1
impl UnsafeUnpin for ResultViewV1
impl UnwindSafe for ResultViewV1
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