polyhorn-ios-sys 0.4.0

Low-level iOS bindings for Polyhorn.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::coregraphics::CGFloat;

/// The inset distances for views.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
pub struct UIEdgeInsets {
    /// The top edge inset value.
    pub top: CGFloat,

    /// The left edge inset value.
    pub left: CGFloat,

    /// The bottom edge inset value.
    pub bottom: CGFloat,

    /// The right edge inset value.
    pub right: CGFloat,
}