pub struct PowerDiagram {
pub cells: Vec<PowerCell>,
}Expand description
The complete result of power_diagram.
Fields§
§cells: Vec<PowerCell>One PowerCell per input site, in the same order as the input slice.
Trait Implementations§
Source§impl Clone for PowerDiagram
impl Clone for PowerDiagram
Source§fn clone(&self) -> PowerDiagram
fn clone(&self) -> PowerDiagram
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PowerDiagram
impl RefUnwindSafe for PowerDiagram
impl Send for PowerDiagram
impl Sync for PowerDiagram
impl Unpin for PowerDiagram
impl UnsafeUnpin for PowerDiagram
impl UnwindSafe for PowerDiagram
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