[][src]Struct arcs::algorithms::ApproximatedArc

pub struct ApproximatedArc<Space> { /* fields omitted */ }

An iterator over the points in an arc approximation.

This shouldn't be used directly, you are probably looking for Arc::approximate().

Trait Implementations

impl<Space> Clone for ApproximatedArc<Space> where
    Space: Clone
[src]

impl<Space> Debug for ApproximatedArc<Space> where
    Space: Debug
[src]

impl<Space> Iterator for ApproximatedArc<Space>[src]

type Item = Point2D<f64, Space>

The type of the elements being iterated over.

Auto Trait Implementations

impl<Space> RefUnwindSafe for ApproximatedArc<Space> where
    Space: RefUnwindSafe

impl<Space> Send for ApproximatedArc<Space> where
    Space: Send

impl<Space> Sync for ApproximatedArc<Space> where
    Space: Sync

impl<Space> Unpin for ApproximatedArc<Space> where
    Space: Unpin

impl<Space> UnwindSafe for ApproximatedArc<Space> where
    Space: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[src]

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

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

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]

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

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> ParallelBridge for T where
    T: Send + Iterator,
    <T as Iterator>::Item: Send
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

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

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.