pub struct CWComplex {
pub name: String,
pub cells: Vec<u32>,
}Expand description
Represents a CW complex with cell attachments.
Fields§
§name: StringName of the complex.
cells: Vec<u32>Cells by dimension: cells[k] = number of k-cells.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CWComplex
impl RefUnwindSafe for CWComplex
impl Send for CWComplex
impl Sync for CWComplex
impl Unpin for CWComplex
impl UnsafeUnpin for CWComplex
impl UnwindSafe for CWComplex
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