#[repr(C)]pub struct adjmatrix_t {
pub nrows: c_int,
pub ncols: c_int,
pub data: *mut c_char,
}Fields§
§nrows: c_int§ncols: c_int§data: *mut c_charTrait Implementations§
Source§impl Clone for adjmatrix_t
impl Clone for adjmatrix_t
Source§fn clone(&self) -> adjmatrix_t
fn clone(&self) -> adjmatrix_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for adjmatrix_t
impl Debug for adjmatrix_t
impl Copy for adjmatrix_t
Auto Trait Implementations§
impl Freeze for adjmatrix_t
impl RefUnwindSafe for adjmatrix_t
impl !Send for adjmatrix_t
impl !Sync for adjmatrix_t
impl Unpin for adjmatrix_t
impl UnwindSafe for adjmatrix_t
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