[][src]Struct nlsn_delaunay::Edge

pub struct Edge {
    pub v1: Rc<Vertex>,
    pub v2: Rc<Vertex>,
}

Fields

v1: Rc<Vertex>v2: Rc<Vertex>

Methods

impl Edge[src]

pub fn new(v1: &Rc<Vertex>, v2: &Rc<Vertex>) -> Self[src]

pub fn opposite(&self) -> Self[src]

pub fn length(&self) -> f64[src]

pub fn encroach(&self, vertex: &Vertex) -> Continence[src]

pub fn midpoint(&self) -> Vertex[src]

pub fn from_coordinates(coordinates: &Vec<f64>) -> Vec<Rc<Edge>>[src]

pub fn from_vertices(vertices_list: &Vec<Rc<Vertex>>) -> Vec<Rc<Edge>>[src]

Trait Implementations

impl Debug for Edge[src]

impl Display for Edge[src]

impl Eq for Edge[src]

impl Hash for Edge[src]

impl PartialEq<Edge> for Edge[src]

Auto Trait Implementations

impl !RefUnwindSafe for Edge

impl !Send for Edge

impl !Sync for Edge

impl Unpin for Edge

impl UnwindSafe for Edge

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToString for T where
    T: Display + ?Sized
[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>,