[−][src]Struct polyhorn_ios::layout::algorithm::Flexbox
Concrete flexbox implementation powered by Yoga.
Trait Implementations
impl Algorithm for Flexbox[src]
type Node = Node
Represents the type of a node within this flexbox.
fn new() -> Flexbox[src]
fn new_node(
&mut self,
style: ViewStyle,
children: &[<Flexbox as Algorithm>::Node]
) -> <Flexbox as Algorithm>::Node[src]
&mut self,
style: ViewStyle,
children: &[<Flexbox as Algorithm>::Node]
) -> <Flexbox as Algorithm>::Node
fn new_leaf(
&mut self,
style: ViewStyle,
measure: MeasureFunc
) -> <Flexbox as Algorithm>::Node[src]
&mut self,
style: ViewStyle,
measure: MeasureFunc
) -> <Flexbox as Algorithm>::Node
fn add_child(
&mut self,
parent: <Flexbox as Algorithm>::Node,
child: <Flexbox as Algorithm>::Node
)[src]
&mut self,
parent: <Flexbox as Algorithm>::Node,
child: <Flexbox as Algorithm>::Node
)
fn remove_child(
&mut self,
parent: <Flexbox as Algorithm>::Node,
child: <Flexbox as Algorithm>::Node
)[src]
&mut self,
parent: <Flexbox as Algorithm>::Node,
child: <Flexbox as Algorithm>::Node
)
fn child_count(&self, parent: <Flexbox as Algorithm>::Node) -> usize[src]
fn remove(&mut self, node: <Flexbox as Algorithm>::Node)[src]
fn set_style(&mut self, node: <Flexbox as Algorithm>::Node, style: ViewStyle)[src]
fn set_measure(
&mut self,
node: <Flexbox as Algorithm>::Node,
measure: MeasureFunc
)[src]
&mut self,
node: <Flexbox as Algorithm>::Node,
measure: MeasureFunc
)
fn compute_layout(
&mut self,
node: <Flexbox as Algorithm>::Node,
size: Size<Dimension<f32>>
)[src]
&mut self,
node: <Flexbox as Algorithm>::Node,
size: Size<Dimension<f32>>
)
fn layout(&self, node: <Flexbox as Algorithm>::Node) -> Layout[src]
impl Send for Flexbox[src]
Send and sync are not implemented for yoga::Node but they can be sent
between threads and they are synced by the mutex of Flexbox.
impl Sync for Flexbox[src]
Auto Trait Implementations
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]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>, [src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> AsAny for T where
T: Any, [src]
T: Any,
fn as_any(&self) -> &(dyn Any + 'static)[src]
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]
fn type_name(&self) -> &'static str[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> ConvertInto<U> for T where
U: ConvertFrom<T>, [src]
U: ConvertFrom<T>,
fn convert_into(self) -> U[src]
fn convert_unclamped_into(self) -> U[src]
fn try_convert_into(self) -> Result<U, OutOfBounds<U>>[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,