pub struct ChannelsJson {
pub current_elapsed_ns: u64,
pub channels: Vec<SerializableChannelStats>,
}Expand description
Wrapper for channels-only JSON response
Fields§
§current_elapsed_ns: u64Current elapsed time since program start in nanoseconds
channels: Vec<SerializableChannelStats>Channel statistics
Trait Implementations§
Source§impl Clone for ChannelsJson
impl Clone for ChannelsJson
Source§fn clone(&self) -> ChannelsJson
fn clone(&self) -> ChannelsJson
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 ChannelsJson
impl Debug for ChannelsJson
Source§impl<'de> Deserialize<'de> for ChannelsJson
impl<'de> Deserialize<'de> for ChannelsJson
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChannelsJson
impl RefUnwindSafe for ChannelsJson
impl Send for ChannelsJson
impl Sync for ChannelsJson
impl Unpin for ChannelsJson
impl UnwindSafe for ChannelsJson
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