pub struct Bundle<'a> {
pub timetag: u64,
pub messages: Vec<Message<'a>>,
}Expand description
Example placeholder type for OSC bundles
Fields§
§timetag: u64OSC time tag
messages: Vec<Message<'a>>Messages contained in the bundle
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for Bundle<'a>
Auto Trait Implementations§
impl<'a> Freeze for Bundle<'a>
impl<'a> RefUnwindSafe for Bundle<'a>
impl<'a> Send for Bundle<'a>
impl<'a> Sync for Bundle<'a>
impl<'a> Unpin for Bundle<'a>
impl<'a> UnwindSafe for Bundle<'a>
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