pub struct EventOverflowNode {
pub next: PageID,
pub data: Vec<u8>,
}Fields§
§next: PageID§data: Vec<u8>Implementations§
Source§impl EventOverflowNode
impl EventOverflowNode
pub fn calc_serialized_size(&self) -> usize
pub fn serialize_into(&self, buf: &mut [u8]) -> DcbResult<usize>
pub fn from_slice(slice: &[u8]) -> DcbResult<Self>
Trait Implementations§
Source§impl Clone for EventOverflowNode
impl Clone for EventOverflowNode
Source§fn clone(&self) -> EventOverflowNode
fn clone(&self) -> EventOverflowNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EventOverflowNode
impl Debug for EventOverflowNode
impl Eq for EventOverflowNode
Source§impl PartialEq for EventOverflowNode
impl PartialEq for EventOverflowNode
impl StructuralPartialEq for EventOverflowNode
Auto Trait Implementations§
impl Freeze for EventOverflowNode
impl RefUnwindSafe for EventOverflowNode
impl Send for EventOverflowNode
impl Sync for EventOverflowNode
impl Unpin for EventOverflowNode
impl UnsafeUnpin for EventOverflowNode
impl UnwindSafe for EventOverflowNode
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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