pub struct OscBundle {
pub timetag: TimeTag,
pub packets: Vec<OscPacket>,
}Expand description
A bundle of OSC packets with a shared time tag.
Fields§
§timetag: TimeTagThe time tag at which the bundled messages should fire.
packets: Vec<OscPacket>The contained OSC packets (messages or nested bundles).
Trait Implementations§
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 UnsafeUnpin 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