Skip to main content

VarInt

Struct VarInt 

Source
pub struct VarInt(/* private fields */);

Implementations§

Source§

impl VarInt

Source

pub fn decode(bytes: &[u8]) -> VarInt

Decodes a variable integer into a 32-bit unsigned integer. bytes: A slice of bytes representing the variable integer.

Source

pub fn encode(value: i32) -> Vec<u8>

Encodes a 32-bit integer into a variable integer. value: The 32-bit integer to encode.

Source

pub fn encode_long(value: i64) -> Vec<u8>

Encodes a 64-bit integer into a variable integer. value: The 64-bit integer to encode.

Source

pub fn decode_at(bytes: &[u8], index: usize) -> (VarInt, usize)

Decodes a variable integer at a specific index. bytes: A slice of bytes representing the variable integer. index: The index to start reading the bytes from.

Source

pub fn raw_at(bytes: &[u8], index: usize) -> Vec<u8>

Reads the bytes of a variable integer. bytes: A slice of bytes representing the variable integer. index: The index to start reading the bytes from.

Source

pub fn length(&self) -> usize

Returns the length of the buffer for the varint.

Source

pub fn as_i32(&self) -> i32

Creates a 32-bit integer representation of the varint.

Source

pub fn as_i64(&self) -> i64

Creates a 64-bit integer representation of the varint.

Source

pub fn as_u32(&self) -> Option<u32>

Creates a 32-bit unsigned integer representation of the varint. Returns None if the value is negative.

Source

pub fn as_u64(&self) -> Option<u64>

Creates a 64-bit unsigned integer representation of the varint. Returns None if the value is negative.

Trait Implementations§

Source§

impl Clone for VarInt

Source§

fn clone(&self) -> VarInt

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for VarInt

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for VarInt

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<VarInt> for i32

Source§

fn from(value: VarInt) -> Self

Converts to this type from the input type.
Source§

impl From<VarInt> for i64

Source§

fn from(value: VarInt) -> Self

Converts to this type from the input type.
Source§

impl From<VarInt> for Value

Source§

fn from(value: VarInt) -> Self

Converts to this type from the input type.
Source§

impl From<i32> for VarInt

Source§

fn from(value: i32) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for VarInt

Source§

fn from(value: i64) -> Self

Converts to this type from the input type.
Source§

impl Into<VarInt> for Value

Source§

fn into(self) -> VarInt

Converts this type into the (usually inferred) input type.
Source§

impl PartialEq<VarInt> for i32

Source§

fn eq(&self, other: &VarInt) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<VarInt> for i64

Source§

fn eq(&self, other: &VarInt) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<i32> for VarInt

Source§

fn eq(&self, other: &i32) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<i64> for VarInt

Source§

fn eq(&self, other: &i64) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for VarInt

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.