pub struct LogReadReplyPayload {
pub log_size: u8,
pub offset: u32,
pub count: u16,
pub entries: Vec<LogEntry>,
}
Fields§
§log_size: u8
Size of each log item in bytes.
offset: u32
The offset number used in this packet.
count: u16
Number of elements in the following array.
entries: Vec<LogEntry>
Trait Implementations§
Source§impl Clone for LogReadReplyPayload
impl Clone for LogReadReplyPayload
Source§fn clone(&self) -> LogReadReplyPayload
fn clone(&self) -> LogReadReplyPayload
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 LogReadReplyPayload
impl Debug for LogReadReplyPayload
Source§impl Decode for LogReadReplyPayload
impl Decode for LogReadReplyPayload
Source§impl PartialEq for LogReadReplyPayload
impl PartialEq for LogReadReplyPayload
impl Eq for LogReadReplyPayload
impl StructuralPartialEq for LogReadReplyPayload
Auto Trait Implementations§
impl Freeze for LogReadReplyPayload
impl RefUnwindSafe for LogReadReplyPayload
impl Send for LogReadReplyPayload
impl Sync for LogReadReplyPayload
impl Unpin for LogReadReplyPayload
impl UnwindSafe for LogReadReplyPayload
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