pub struct ChannelLogs {
pub id: String,
pub sent_logs: Vec<LogEntry>,
pub received_logs: Vec<LogEntry>,
}Expand description
Serializable log response containing sent and received logs.
Fields§
§id: String§sent_logs: Vec<LogEntry>§received_logs: Vec<LogEntry>Trait Implementations§
Source§impl Clone for ChannelLogs
impl Clone for ChannelLogs
Source§fn clone(&self) -> ChannelLogs
fn clone(&self) -> ChannelLogs
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 ChannelLogs
impl Debug for ChannelLogs
Source§impl<'de> Deserialize<'de> for ChannelLogs
impl<'de> Deserialize<'de> for ChannelLogs
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 ChannelLogs
impl RefUnwindSafe for ChannelLogs
impl Send for ChannelLogs
impl Sync for ChannelLogs
impl Unpin for ChannelLogs
impl UnwindSafe for ChannelLogs
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