Struct rgeometry::data::DirectedEdge_
source · [−]Fields
src: Point<T, N>
dst: Point<T, N>
Trait Implementations
sourceimpl<T: Clone, const N: usize> Clone for DirectedEdge_<T, N>
impl<T: Clone, const N: usize> Clone for DirectedEdge_<T, N>
sourcefn clone(&self) -> DirectedEdge_<T, N>
fn clone(&self) -> DirectedEdge_<T, N>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug, const N: usize> Debug for DirectedEdge_<T, N>
impl<T: Debug, const N: usize> Debug for DirectedEdge_<T, N>
sourceimpl<'a, T: Ord, const N: usize> From<&'a DirectedEdge_<T, N>> for LineSegmentView<'a, T, N>
impl<'a, T: Ord, const N: usize> From<&'a DirectedEdge_<T, N>> for LineSegmentView<'a, T, N>
sourcefn from(edge: &'a DirectedEdge_<T, N>) -> LineSegmentView<'a, T, N>
fn from(edge: &'a DirectedEdge_<T, N>) -> LineSegmentView<'a, T, N>
Converts to this type from the input type.
sourceimpl<T: Ord, const N: usize> From<DirectedEdge_<T, N>> for LineSegment<T, N>
impl<T: Ord, const N: usize> From<DirectedEdge_<T, N>> for LineSegment<T, N>
sourcefn from(edge: DirectedEdge_<T, N>) -> LineSegment<T, N>
fn from(edge: DirectedEdge_<T, N>) -> LineSegment<T, N>
Converts to this type from the input type.
sourceimpl<'a, T> Intersects<&'a DirectedEdge_<T, 2_usize>> for &'a DirectedEdge_<T, 2> where
T: PolygonScalar,
impl<'a, T> Intersects<&'a DirectedEdge_<T, 2_usize>> for &'a DirectedEdge_<T, 2> where
T: PolygonScalar,
type Result = ILineSegment<'a, T>
fn intersect(self, other: &'a DirectedEdge_<T, 2>) -> Option<Self::Result>
sourceimpl<T: Ord, const N: usize> Ord for DirectedEdge_<T, N>
impl<T: Ord, const N: usize> Ord for DirectedEdge_<T, N>
sourceimpl<T: PartialEq, const N: usize> PartialEq<DirectedEdge_<T, N>> for DirectedEdge_<T, N>
impl<T: PartialEq, const N: usize> PartialEq<DirectedEdge_<T, N>> for DirectedEdge_<T, N>
sourcefn eq(&self, other: &DirectedEdge_<T, N>) -> bool
fn eq(&self, other: &DirectedEdge_<T, N>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DirectedEdge_<T, N>) -> bool
fn ne(&self, other: &DirectedEdge_<T, N>) -> bool
This method tests for !=
.
sourceimpl<T: PartialOrd, const N: usize> PartialOrd<DirectedEdge_<T, N>> for DirectedEdge_<T, N>
impl<T: PartialOrd, const N: usize> PartialOrd<DirectedEdge_<T, N>> for DirectedEdge_<T, N>
sourcefn partial_cmp(&self, other: &DirectedEdge_<T, N>) -> Option<Ordering>
fn partial_cmp(&self, other: &DirectedEdge_<T, N>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<T: Copy, const N: usize> Copy for DirectedEdge_<T, N>
impl<T: Eq, const N: usize> Eq for DirectedEdge_<T, N>
impl<T, const N: usize> StructuralEq for DirectedEdge_<T, N>
impl<T, const N: usize> StructuralPartialEq for DirectedEdge_<T, N>
Auto Trait Implementations
impl<T, const N: usize> RefUnwindSafe for DirectedEdge_<T, N> where
T: RefUnwindSafe,
impl<T, const N: usize> Send for DirectedEdge_<T, N> where
T: Send,
impl<T, const N: usize> Sync for DirectedEdge_<T, N> where
T: Sync,
impl<T, const N: usize> Unpin for DirectedEdge_<T, N> where
T: Unpin,
impl<T, const N: usize> UnwindSafe for DirectedEdge_<T, N> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more