pub struct KgslAdrenoCmdbatchRetiredFtraceEvent {Show 17 fields
pub id: Option<u32>,
pub timestamp: Option<u32>,
pub inflight: Option<i64>,
pub recovery: Option<u32>,
pub flags: Option<u32>,
pub start: Option<u64>,
pub retire: Option<u64>,
pub prio: Option<i32>,
pub rb_id: Option<i32>,
pub rptr: Option<u32>,
pub wptr: Option<u32>,
pub q_inflight: Option<i32>,
pub fault_recovery: Option<u64>,
pub dispatch_queue: Option<u32>,
pub submitted_to_rb: Option<u64>,
pub retired_on_gmu: Option<u64>,
pub active: Option<u64>,
}
Fields§
§id: Option<u32>
§timestamp: Option<u32>
§inflight: Option<i64>
§recovery: Option<u32>
§flags: Option<u32>
§start: Option<u64>
§retire: Option<u64>
§prio: Option<i32>
§rb_id: Option<i32>
§rptr: Option<u32>
§wptr: Option<u32>
§q_inflight: Option<i32>
§fault_recovery: Option<u64>
§dispatch_queue: Option<u32>
§submitted_to_rb: Option<u64>
§retired_on_gmu: Option<u64>
§active: Option<u64>
Implementations§
Source§impl KgslAdrenoCmdbatchRetiredFtraceEvent
impl KgslAdrenoCmdbatchRetiredFtraceEvent
Sourcepub fn timestamp(&self) -> u32
pub fn timestamp(&self) -> u32
Returns the value of timestamp
, or the default value if timestamp
is unset.
Sourcepub fn inflight(&self) -> i64
pub fn inflight(&self) -> i64
Returns the value of inflight
, or the default value if inflight
is unset.
Sourcepub fn recovery(&self) -> u32
pub fn recovery(&self) -> u32
Returns the value of recovery
, or the default value if recovery
is unset.
Sourcepub fn retire(&self) -> u64
pub fn retire(&self) -> u64
Returns the value of retire
, or the default value if retire
is unset.
Sourcepub fn q_inflight(&self) -> i32
pub fn q_inflight(&self) -> i32
Returns the value of q_inflight
, or the default value if q_inflight
is unset.
Sourcepub fn fault_recovery(&self) -> u64
pub fn fault_recovery(&self) -> u64
Returns the value of fault_recovery
, or the default value if fault_recovery
is unset.
Sourcepub fn dispatch_queue(&self) -> u32
pub fn dispatch_queue(&self) -> u32
Returns the value of dispatch_queue
, or the default value if dispatch_queue
is unset.
Sourcepub fn submitted_to_rb(&self) -> u64
pub fn submitted_to_rb(&self) -> u64
Returns the value of submitted_to_rb
, or the default value if submitted_to_rb
is unset.
Sourcepub fn retired_on_gmu(&self) -> u64
pub fn retired_on_gmu(&self) -> u64
Returns the value of retired_on_gmu
, or the default value if retired_on_gmu
is unset.
Trait Implementations§
Source§impl Clone for KgslAdrenoCmdbatchRetiredFtraceEvent
impl Clone for KgslAdrenoCmdbatchRetiredFtraceEvent
Source§fn clone(&self) -> KgslAdrenoCmdbatchRetiredFtraceEvent
fn clone(&self) -> KgslAdrenoCmdbatchRetiredFtraceEvent
Returns a copy 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 Message for KgslAdrenoCmdbatchRetiredFtraceEvent
impl Message for KgslAdrenoCmdbatchRetiredFtraceEvent
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<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
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<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
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<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for KgslAdrenoCmdbatchRetiredFtraceEvent
impl PartialEq for KgslAdrenoCmdbatchRetiredFtraceEvent
Source§fn eq(&self, other: &KgslAdrenoCmdbatchRetiredFtraceEvent) -> bool
fn eq(&self, other: &KgslAdrenoCmdbatchRetiredFtraceEvent) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for KgslAdrenoCmdbatchRetiredFtraceEvent
Auto Trait Implementations§
impl Freeze for KgslAdrenoCmdbatchRetiredFtraceEvent
impl RefUnwindSafe for KgslAdrenoCmdbatchRetiredFtraceEvent
impl Send for KgslAdrenoCmdbatchRetiredFtraceEvent
impl Sync for KgslAdrenoCmdbatchRetiredFtraceEvent
impl Unpin for KgslAdrenoCmdbatchRetiredFtraceEvent
impl UnwindSafe for KgslAdrenoCmdbatchRetiredFtraceEvent
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