pub struct ConnectionMatrix {
pub left_size: usize,
pub right_size: usize,
pub data_offset: usize,
}Expand description
Connection cost matrix (row-major Int16).
Fields§
§left_size: usize§right_size: usize§data_offset: usizeOffset into the mmap where the matrix data starts.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConnectionMatrix
impl RefUnwindSafe for ConnectionMatrix
impl Send for ConnectionMatrix
impl Sync for ConnectionMatrix
impl Unpin for ConnectionMatrix
impl UnsafeUnpin for ConnectionMatrix
impl UnwindSafe for ConnectionMatrix
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