pub enum EventValue {
Inline(EventRecord),
Overflow {
event_type: String,
data_len: u64,
tags: Vec<String>,
root_id: PageID,
uuid: Option<Uuid>,
},
}Variants§
Inline(EventRecord)
Overflow
Trait Implementations§
Source§impl Clone for EventValue
impl Clone for EventValue
Source§fn clone(&self) -> EventValue
fn clone(&self) -> EventValue
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 EventValue
impl Debug for EventValue
Source§impl PartialEq<EventRecord> for EventValue
impl PartialEq<EventRecord> for EventValue
Source§impl PartialEq<EventValue> for EventRecord
impl PartialEq<EventValue> for EventRecord
Source§impl PartialEq for EventValue
impl PartialEq for EventValue
impl Eq for EventValue
impl StructuralPartialEq for EventValue
Auto Trait Implementations§
impl Freeze for EventValue
impl RefUnwindSafe for EventValue
impl Send for EventValue
impl Sync for EventValue
impl Unpin for EventValue
impl UnwindSafe for EventValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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