Module serde_osc::de [] [src]

OSC packet deserialization framework.

Structs

Deserializer

Deserializes an entire OSC packet or bundle element (they are syntactically identical). An OSC packet consists of an i32 indicating its length, followed by the packet contents: EITHER a message OR a bundle.

Functions

from_read

Deserialize an OSC packet from some readable device.

from_slice

Deserialize an OSC packet from a &[u8] type. This is a wrapper around the from_read function. Pairs nicely with ser::to_vec, as Vec is coercable to &[u8].