pub struct BytePosition {
pub position: usize,
}
Expand description
Struct which represents a position in a byte stream
Fields§
§position: usize
Current position
Trait Implementations§
Source§impl Clone for BytePosition
impl Clone for BytePosition
Source§fn clone(&self) -> BytePosition
fn clone(&self) -> BytePosition
Returns a copy 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 BytePosition
impl Debug for BytePosition
Source§impl Display for BytePosition
impl Display for BytePosition
Source§impl Ord for BytePosition
impl Ord for BytePosition
Source§fn cmp(&self, other: &BytePosition) -> Ordering
fn cmp(&self, other: &BytePosition) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BytePosition
impl PartialEq for BytePosition
Source§impl PartialOrd for BytePosition
impl PartialOrd for BytePosition
impl Copy for BytePosition
impl Eq for BytePosition
impl StructuralPartialEq for BytePosition
Auto Trait Implementations§
impl Freeze for BytePosition
impl RefUnwindSafe for BytePosition
impl Send for BytePosition
impl Sync for BytePosition
impl Unpin for BytePosition
impl UnwindSafe for BytePosition
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