pub struct FloatView {
pub base: u16,
pub data: Vec<f32>,
}
Expand description
A contiguous view of floats read from the device
Fields§
§base: u16
§data: Vec<f32>
Implementations§
Trait Implementations§
Source§impl ExtendView for FloatView
impl ExtendView for FloatView
fn extend_with(&mut self, other: Self) -> Result<(), ExtendError>
Source§impl UnaryResponse for FloatView
impl UnaryResponse for FloatView
fn from_packet(packet: Bytes) -> Result<Self, ProtocolError>
Auto Trait Implementations§
impl Freeze for FloatView
impl RefUnwindSafe for FloatView
impl Send for FloatView
impl Sync for FloatView
impl Unpin for FloatView
impl UnwindSafe for FloatView
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