pub struct OscBundle {
pub timetag: (u32, u32),
pub content: Vec<OscPacket>,
}
Expand description
An OSC bundle contains zero or more OSC packets and a time tag. The contained packets should be applied at the given time tag.
Fields§
§timetag: (u32, u32)
§content: Vec<OscPacket>
Trait Implementations§
Source§impl IntoOscPacket for OscBundle
impl IntoOscPacket for OscBundle
Source§fn into_osc_packet(self) -> OscPacket
fn into_osc_packet(self) -> OscPacket
Convert into
OscPacket
.impl StructuralPartialEq for OscBundle
Auto Trait Implementations§
impl Freeze for OscBundle
impl RefUnwindSafe for OscBundle
impl Send for OscBundle
impl Sync for OscBundle
impl Unpin for OscBundle
impl UnwindSafe for OscBundle
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