Struct forceatlas2::PointList[][src]

pub struct PointList<T: Coord> {
    pub dimensions: usize,
    pub points: Vec<T>,
}

Fields

dimensions: usizepoints: Vec<T>

Implementations

impl<'a, T: Coord> PointList<T>[src]

pub fn get(&'a self, n: usize) -> &'a Position<T>[src]

pub fn get_clone(&self, n: usize) -> Vec<T>[src]

pub fn get_clone_slice(&self, n: usize, v: &mut [T])[src]

pub fn get_mut(&mut self, n: usize) -> &mut Position<T>[src]

pub fn get_2_mut(
    &mut self,
    n1: usize,
    n2: usize
) -> (&mut Position<T>, &mut Position<T>)
[src]

n1 < n2

pub fn set(&mut self, n: usize, val: &Position<T>)[src]

pub fn iter(&self) -> PointIter<'_, T>

Notable traits for PointIter<'a, T>

impl<'a, T> Iterator for PointIter<'a, T> type Item = &'a [T];
[src]

pub fn iter_mut(&mut self) -> PointIterMut<'_, T>

Notable traits for PointIterMut<'a, T>

impl<'a, T> Iterator for PointIterMut<'a, T> type Item = &'a mut [T];
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for PointList<T> where
    T: RefUnwindSafe

impl<T> Send for PointList<T> where
    T: Send

impl<T> Sync for PointList<T> where
    T: Sync

impl<T> Unpin for PointList<T> where
    T: Unpin

impl<T> UnwindSafe for PointList<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,