pub enum ServerToClientMessage {
ViewLine {
update: ViewLineUpdate,
},
ViewLinesCount {
count: usize,
max: u64,
},
QueryResult {
id: NonZeroUsize,
is_graph: bool,
start: Timestamp,
end: Timestamp,
duration: Timestamp,
cpu: Timestamp,
allocations: u64,
deallocations: u64,
allocation_count: u64,
persistent_allocations: u64,
args: Vec<(String, String)>,
path: Vec<String>,
},
}
Variants§
Trait Implementations§
Source§impl Debug for ServerToClientMessage
impl Debug for ServerToClientMessage
Source§impl<'de> Deserialize<'de> for ServerToClientMessage
impl<'de> Deserialize<'de> for ServerToClientMessage
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 ServerToClientMessage
impl RefUnwindSafe for ServerToClientMessage
impl Send for ServerToClientMessage
impl Sync for ServerToClientMessage
impl Unpin for ServerToClientMessage
impl UnwindSafe for ServerToClientMessage
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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