Skip to main content

Packet

Struct Packet 

Source
pub struct Packet {
    pub data: Vec<u8>,
    /* private fields */
}

Fields§

§data: Vec<u8>

Implementations§

Source§

impl Packet

Source

pub fn header(&self) -> &Header

Examples found in repository?
examples/rx.rs (line 13)
3fn main() -> std::io::Result<()> {
4    let sock = UdpSocket::bind("0.0.0.0:6980")?;
5    loop {
6        let mut buf = [0; vban::MAX_PACKET_SIZE];
7        let (amt, _src) = sock.recv_from(&mut buf)?;
8
9        if let Ok(pkt) = vban::Packet::try_from(&buf[..amt]) {
10            // Check IP of _src
11
12            // Check stream name
13            if pkt.header().stream_name() == "DemoStream" {
14                let _data_size = amt - vban::HEADER_SIZE;
15                print!("Inbound packet! ");
16
17                match pkt.header().sub_protocol() {
18                    vban::SubProtocol::Audio => match pkt.header().codec() {
19                        vban::Codec::PCM => {
20                            println!("{} samples", pkt.data.len());
21                        }
22                        _ => (),
23                    },
24                    _ => (),
25                }
26            }
27        }
28    }
29}
Source

pub fn header_mut(&mut self) -> &mut Header

Trait Implementations§

Source§

impl TryFrom<&[u8]> for Packet

Source§

type Error = Error

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

fn try_from(value: &[u8]) -> Result<Self, Self::Error>

Performs the conversion.

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> 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, 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.