pub struct DataBytes<'input> {
    pub bytes: &'input [u8],
    pub pos: usize,
    pub total: usize,
    pub limits: Vec<usize>,
}

Fields§

§bytes: &'input [u8]§pos: usize§total: usize§limits: Vec<usize>

Implementations§

source§

impl DataBytes<'_>

source

pub fn new(data: &Vec<u8>) -> DataBytes<'_>

source

pub fn bytes_left(&self) -> usize

source

pub fn read_128b(&mut self) -> Result<u128, ParserError>

source

pub fn read_64b(&mut self) -> Result<u64, ParserError>

source

pub fn read_32b(&mut self) -> Result<u32, ParserError>

source

pub fn read_16b(&mut self) -> Result<u16, ParserError>

source

pub fn read_8b(&mut self) -> Result<u8, ParserError>

source

pub fn read_n_bytes(&mut self, n_bytes: usize) -> Result<Vec<u8>, ParserError>

source

pub fn read_n_bytes_to_string(
    &mut self,
    n_bytes: usize
) -> Result<String, ParserError>

source

pub fn read_and_drop_n_bytes(
    &mut self,
    n_bytes: usize
) -> Result<(), ParserError>

source

pub fn fast_forward(&mut self, to: usize)

source

pub fn read_nlri_prefix(
    &mut self,
    afi: &Afi,
    add_path: bool
) -> Result<NetworkPrefix, ParserError>

Read announced/withdrawn prefix.

The length in bits is 1 byte, and then based on the IP version it reads different number of bytes. If the add_path is true, it will also first read a 4-byte path id first; otherwise, a path-id of 0 is automatically set.

source

pub fn read_address(&mut self, afi: &Afi) -> Result<IpAddr>

source

pub fn read_ipv4_address(&mut self) -> Result<Ipv4Addr, ParserError>

source

pub fn read_ipv6_address(&mut self) -> Result<Ipv6Addr, ParserError>

source

pub fn read_ipv4_prefix(&mut self) -> Result<Ipv4Net, ParserError>

source

pub fn read_ipv6_prefix(&mut self) -> Result<Ipv6Net, ParserError>

source

pub fn read_asn(&mut self, as_length: &AsnLength) -> Result<Asn, ParserError>

source

pub fn read_asns(
    &mut self,
    as_length: &AsnLength,
    count: usize
) -> Result<Vec<Asn>, ParserError>

source

pub fn read_afi(&mut self) -> Result<Afi, ParserError>

source

pub fn read_safi(&mut self) -> Result<Safi, ParserError>

source

pub fn parse_nlri_list(
    &mut self,
    add_path: bool,
    afi: &Afi,
    total_bytes: usize
) -> Result<Vec<NetworkPrefix>, ParserError>

Auto Trait Implementations§

§

impl<'input> RefUnwindSafe for DataBytes<'input>

§

impl<'input> Send for DataBytes<'input>

§

impl<'input> Sync for DataBytes<'input>

§

impl<'input> Unpin for DataBytes<'input>

§

impl<'input> UnwindSafe for DataBytes<'input>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
    S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more