pub enum OscType {
Int(i32),
Float(f32),
String(String),
Blob(Vec<u8>),
Timetag(TimeTag),
}Variants§
Trait Implementations§
impl StructuralPartialEq for OscType
Auto Trait Implementations§
impl Freeze for OscType
impl RefUnwindSafe for OscType
impl Send for OscType
impl Sync for OscType
impl Unpin for OscType
impl UnsafeUnpin for OscType
impl UnwindSafe for OscType
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