[][src]Struct polyhorn_ios::layout::LayoutGuide

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

Opaque rectangle defined by coordinates within a reference system.

Implementations

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

pub fn new(
    origin: LayoutAnchor<T>,
    size: Size<T>,
    direction: LayoutDirection
) -> LayoutGuide<T>
[src]

Returns a new layout guide with the given opaque origin coordinate and the given concrete size and layout direction.

pub fn top_left(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the top left corner.

pub fn top_right(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the top right corner.

pub fn top_leading(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the top leading corner (which is either the top left corner or the top right corner depending on the layout direction).

pub fn top_trailing(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the top trailing corner (which is either the top right corner or the top left corner depending on the layout direction).

pub fn bottom_left(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the bottom left corner.

pub fn bottom_right(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the bottom right corner.

pub fn bottom_leading(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the bottom leading corner (which is either the bottom left corner or the bottom right corner depending on the layout direction).

pub fn bottom_trailing(&self) -> LayoutAnchor<T>[src]

Returns a layout anchor for the bottom trailing corner (which is either the bottom right corner or the bottom left corner depending on the layout direction).

Trait Implementations

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for LayoutGuide<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> 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.