[][src]Struct polyhorn_ios::layout::LayoutAnchor

pub struct LayoutAnchor<T> where
    T: Float
{ /* fields omitted */ }

Opaque coordinate within a reference system.

Implementations

impl<T> LayoutAnchor<T> where
    T: Float
[src]

pub fn new(x: T, y: T) -> LayoutAnchor<T>[src]

Returns a new anchor with the given absolute coordinates (i.e. relative to the origin of the reference system).

pub fn distance(self, other: LayoutAnchor<T>) -> LayoutDistance<T>[src]

Returns the distance between this anchor and the given anchor.

Trait Implementations

impl<T> Clone for LayoutAnchor<T> where
    T: Clone + Float
[src]

impl<T> Copy for LayoutAnchor<T> where
    T: Copy + Float
[src]

impl<T> Debug for LayoutAnchor<T> where
    T: Debug + Float
[src]

impl<T> Default for LayoutAnchor<T> where
    T: Default + Float
[src]

impl<T> Eq for LayoutAnchor<T> where
    T: Eq + Float
[src]

impl<T> PartialEq<LayoutAnchor<T>> for LayoutAnchor<T> where
    T: PartialEq<T> + Float
[src]

impl<T> StructuralEq for LayoutAnchor<T> where
    T: Float
[src]

impl<T> StructuralPartialEq for LayoutAnchor<T> where
    T: Float
[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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

impl<T> AsAny 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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

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

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

impl<T> IsDefault for T where
    T: PartialEq<T> + Default + Copy
[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.