pub struct Point<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§
impl<M: Model, T: Value> Copy for Point<M, T>
Auto Trait Implementations§
impl<M, T> Freeze for Point<M, T>
impl<M, T> RefUnwindSafe for Point<M, T>where
M: RefUnwindSafe,
T: RefUnwindSafe,
impl<M, T> Send for Point<M, T>
impl<M, T> Sync for Point<M, T>
impl<M, T> Unpin for Point<M, T>
impl<M, T> UnwindSafe for Point<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