pub struct Addr(pub u32);
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: u32
Implementations
Trait Implementations
impl Copy for Addr
impl Eq for Addr
impl StructuralEq for Addr
impl StructuralPartialEq for Addr
Auto Trait Implementations
impl RefUnwindSafe for Addr
impl Send for Addr
impl Sync for Addr
impl Unpin for Addr
impl UnwindSafe for Addr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more