pub struct ModelAddr<M: Model> {
pub addr: u16,
pub len: u16,
/* private fields */
}Expand description
This structure is used to store the address of models after a successful model discovery.
Fields§
§addr: u16The discovered address of this model.
len: u16The discovered length of this model. A length of 0 indicates that the model is unsupported.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<M> RefUnwindSafe for ModelAddr<M>where M: RefUnwindSafe,
impl<M> Send for ModelAddr<M>where M: Send,
impl<M> Sync for ModelAddr<M>where M: Sync,
impl<M> Unpin for ModelAddr<M>where M: Unpin,
impl<M> UnwindSafe for ModelAddr<M>where M: 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