[−][src]Enum polyhorn_android::layout::LayoutAxisX
Represents a potentially direction dependent horizontal layout axis.
Variants
A horizontal axis that depends on the layout direction.
Fields of DirectionDependent
A horizontal axis that is independent of the layout direction.
Fields of DirectionIndependent
Implementations
impl<T> LayoutAxisX<T>[src]
pub fn dependent(leading: T, trailing: T) -> LayoutAxisX<T>[src]
Returns a layout direction dependent horizontal axis with the given leading and trailing values.
pub fn independent(left: T, right: T) -> LayoutAxisX<T>[src]
Returns a layout direction independent horizontal axis with the given left and right values.
pub fn left(&self, direction: LayoutDirection) -> &T[src]
Resolves the left value of this horizontal axis using the given layout direction.
pub fn right(&self, direction: LayoutDirection) -> &T[src]
Resolves the right value of this horizontal axis using the given layout direction.
Trait Implementations
impl<T> Clone for LayoutAxisX<T> where
T: Clone, [src]
T: Clone,
fn clone(&self) -> LayoutAxisX<T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T> Copy for LayoutAxisX<T> where
T: Copy, [src]
T: Copy,
impl<T> Debug for LayoutAxisX<T> where
T: Debug, [src]
T: Debug,
impl<T> Default for LayoutAxisX<T> where
T: Default, [src]
T: Default,
fn default() -> LayoutAxisX<T>[src]
impl<T> Eq for LayoutAxisX<T> where
T: Eq, [src]
T: Eq,
impl<T> PartialEq<LayoutAxisX<T>> for LayoutAxisX<T> where
T: PartialEq<T>, [src]
T: PartialEq<T>,
fn eq(&self, other: &LayoutAxisX<T>) -> bool[src]
fn ne(&self, other: &LayoutAxisX<T>) -> bool[src]
impl<T> StructuralEq for LayoutAxisX<T>[src]
impl<T> StructuralPartialEq for LayoutAxisX<T>[src]
impl<T> ToTokens for LayoutAxisX<T> where
T: ToTokens, [src]
T: ToTokens,
fn to_tokens(&self, tokens: &mut TokenStream)[src]
fn to_token_stream(&self) -> TokenStream[src]
fn into_token_stream(self) -> TokenStream[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for LayoutAxisX<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for LayoutAxisX<T> where
T: Send,
T: Send,
impl<T> Sync for LayoutAxisX<T> where
T: Sync,
T: Sync,
impl<T> Unpin for LayoutAxisX<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for LayoutAxisX<T> where
T: UnwindSafe,
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]
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<'a, T> Desc<'a, T> for T[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> IsDefault for T where
T: PartialEq<T> + Default + Copy, [src]
T: PartialEq<T> + Default + Copy,
fn is_default(&self) -> bool[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
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>,