pub struct MotorTapAgent {
pub agent_id: String,
pub burst_num: u64,
pub timestamp_ms: i64,
pub byte_count: usize,
pub published: bool,
pub last_error: String,
pub subscribed_cortical_ids: Vec<String>,
}Expand description
Per-agent publish stats captured by the motor tap.
Fields§
§agent_id: String§burst_num: u64§timestamp_ms: i64§byte_count: usize§published: bool§last_error: String§subscribed_cortical_ids: Vec<String>Trait Implementations§
Source§impl Clone for MotorTapAgent
impl Clone for MotorTapAgent
Source§fn clone(&self) -> MotorTapAgent
fn clone(&self) -> MotorTapAgent
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 MotorTapAgent
impl Debug for MotorTapAgent
Source§impl Serialize for MotorTapAgent
impl Serialize for MotorTapAgent
Auto Trait Implementations§
impl Freeze for MotorTapAgent
impl RefUnwindSafe for MotorTapAgent
impl Send for MotorTapAgent
impl Sync for MotorTapAgent
impl Unpin for MotorTapAgent
impl UnsafeUnpin for MotorTapAgent
impl UnwindSafe for MotorTapAgent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more