pub struct Entry {
pub fields: HashMap<String, Vec<u8>>,
pub field_values: HashMap<String, Vec<Vec<u8>>>,
pub payloads: Vec<Vec<u8>>,
pub seqnum: u64,
pub realtime: u64,
pub monotonic: u64,
pub boot_id: [u8; 16],
pub cursor: String,
}Fields§
§fields: HashMap<String, Vec<u8>>Convenience map for UTF-8 field names. RAW-mode files may contain field
names that are not valid UTF-8; use raw_fields() or get_raw_values()
when byte-identical field-name identity matters.
field_values: HashMap<String, Vec<Vec<u8>>>Convenience repeated-value map for UTF-8 field names.
payloads: Vec<Vec<u8>>Full on-disk DATA payloads as FIELD=value bytes.
seqnum: u64§realtime: u64§monotonic: u64§boot_id: [u8; 16]§cursor: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnsafeUnpin for Entry
impl UnwindSafe for Entry
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