pub struct DecodeEvent<'a> {
pub buffer_offset: usize,
pub buffer_body_len: usize,
pub kind: EventKind,
pub id: EventId,
pub body: DecodeEventBody<'a>,
}Fields§
§buffer_offset: usize§buffer_body_len: usize§kind: EventKind§id: EventId§body: DecodeEventBody<'a>Trait Implementations§
Source§impl<'a> Clone for DecodeEvent<'a>
impl<'a> Clone for DecodeEvent<'a>
Source§fn clone(&self) -> DecodeEvent<'a>
fn clone(&self) -> DecodeEvent<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for DecodeEvent<'a>
impl<'a> RefUnwindSafe for DecodeEvent<'a>
impl<'a> Send for DecodeEvent<'a>
impl<'a> Sync for DecodeEvent<'a>
impl<'a> Unpin for DecodeEvent<'a>
impl<'a> UnwindSafe for DecodeEvent<'a>
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