pub struct Addr(pub u64);
Expand description
An address within a data stream. Each data stream has its own address space,
i.e. the first piece of data written to the events stream will have
Addr(0)
and the first piece of data written to the string data stream
will also have Addr(0)
.
Tuple Fields§
§0: u64
Implementations§
Trait Implementations§
source§impl PartialEq for Addr
impl PartialEq for Addr
impl Copy for Addr
impl Eq for Addr
impl StructuralPartialEq for Addr
Auto Trait Implementations§
impl Freeze for Addr
impl RefUnwindSafe for Addr
impl Send for Addr
impl Sync for Addr
impl Unpin for Addr
impl UnwindSafe for Addr
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