pub struct PointDef<M: Model, T: Value> {
pub offset: u16,
pub length: u16,
pub writable: bool,
/* private fields */
}Expand description
Definition of a point
Fields§
§offset: u16Offset within the model
length: u16Length of the data
writable: boolIs this point writable?
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<M, T> RefUnwindSafe for PointDef<M, T>where M: RefUnwindSafe, T: RefUnwindSafe,
impl<M, T> Send for PointDef<M, T>where M: Send, T: Send,
impl<M, T> Sync for PointDef<M, T>where M: Sync, T: Sync,
impl<M, T> Unpin for PointDef<M, T>where M: Unpin, T: Unpin,
impl<M, T> UnwindSafe for PointDef<M, T>where M: UnwindSafe, T: UnwindSafe,
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