[−][src]Struct polyhorn_android::geometry::ByCorner
This is a wrapper that contains a value of the given type for each corner of a rectangle.
use polyhorn_ui::geometry::ByCorner; use polyhorn_ui::layout::{LayoutAxisX, LayoutDirection}; let mut by_corner = ByCorner::<f32>::default(); by_corner.top = LayoutAxisX::dependent(10.0, 30.0); assert_eq!(by_corner.top.left(LayoutDirection::LTR), &10.0); assert_eq!(by_corner.top.left(LayoutDirection::RTL), &30.0);
Fields
all: LayoutAxisY<LayoutAxisX<T>>This is a nested field that contains a potentially layout direction dependent horizontal axis in a layout direction independent vertical axis.
Implementations
impl<T> ByCorner<T>[src]
pub fn map<F, O>(self, op: F) -> ByCorner<O> where
F: FnMut(T) -> O, [src]
F: FnMut(T) -> O,
Applies the given operation to every element of this structure and returns the result. The operation does not necessarily have to return a value of the same type.
Trait Implementations
impl<T> Clone for ByCorner<T> where
T: Clone, [src]
T: Clone,
impl<T> Copy for ByCorner<T> where
T: Copy, [src]
T: Copy,
impl<T> Debug for ByCorner<T> where
T: Debug, [src]
T: Debug,
impl<T> Default for ByCorner<T> where
T: Default, [src]
T: Default,
impl<T> Deref for ByCorner<T>[src]
type Target = LayoutAxisY<LayoutAxisX<T>>
The resulting type after dereferencing.
fn deref(&self) -> &<ByCorner<T> as Deref>::Target[src]
impl<T> DerefMut for ByCorner<T>[src]
impl<T> Eq for ByCorner<T> where
T: Eq, [src]
T: Eq,
impl<T> PartialEq<ByCorner<T>> for ByCorner<T> where
T: PartialEq<T>, [src]
T: PartialEq<T>,
impl<T> StructuralEq for ByCorner<T>[src]
impl<T> StructuralPartialEq for ByCorner<T>[src]
impl<T> ToTokens for ByCorner<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 ByCorner<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for ByCorner<T> where
T: Send,
T: Send,
impl<T> Sync for ByCorner<T> where
T: Sync,
T: Sync,
impl<T> Unpin for ByCorner<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for ByCorner<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>,