Struct app_units::Au
[−]
[src]
pub struct Au(pub i32);
An App Unit, the fundamental unit of length in Servo. Usually 1/60th of a pixel (see AU_PER_PX)
Please ensure that the values are between MIN_AU and MAX_AU. It is safe to construct invalid Au values, but it may lead to panics and overflows.
Methods
impl Au
[src]
pub fn new(value: i32) -> Au
[src]
FIXME(pcwalton): Workaround for lack of cross crate inlining of newtype structs!
pub fn scale_by(self, factor: f32) -> Au
[src]
pub fn scale_by_trunc(self, factor: f32) -> Au
[src]
Scale, but truncate (useful for viewport-relative units)
pub fn from_f64_au(float: f64) -> Self
[src]
pub fn from_px(px: i32) -> Au
[src]
pub fn to_px(self) -> i32
[src]
Rounds this app unit down to the pixel towards zero and returns it.
pub fn ceil_to_px(self) -> i32
[src]
Ceil this app unit to the appropriate pixel boundary and return it.
pub fn to_nearest_px(self) -> i32
[src]
pub fn to_nearest_pixel(self, pixels_per_px: f32) -> f32
[src]
pub fn to_f32_px(self) -> f32
[src]
pub fn to_f64_px(self) -> f64
[src]
pub fn from_f32_px(px: f32) -> Au
[src]
pub fn from_f64_px(px: f64) -> Au
[src]
pub fn abs(self) -> Self
[src]
Trait Implementations
impl Clone for Au
[src]
fn clone(&self) -> Au
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for Au
[src]
impl Hash for Au
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl PartialEq for Au
[src]
fn eq(&self, __arg_0: &Au) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Au) -> bool
[src]
This method tests for !=
.
impl PartialOrd for Au
[src]
fn partial_cmp(&self, __arg_0: &Au) -> Option<Ordering>
[src]
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &Au) -> bool
[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &Au) -> bool
[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &Au) -> bool
[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &Au) -> bool
[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Eq for Au
[src]
impl Ord for Au
[src]
fn cmp(&self, __arg_0: &Au) -> Ordering
[src]
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl<'de> Deserialize<'de> for Au
[src]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Au, D::Error>
[src]
Deserialize this value from the given Serde deserializer. Read more
impl Serialize for Au
[src]
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>
[src]
Serialize this value into the given Serde serializer. Read more
impl Default for Au
[src]
impl Zero for Au
[src]
fn zero() -> Au
[src]
Returns the additive identity element of Self
, 0
. Read more
fn is_zero(&self) -> bool
[src]
Returns true
if self
is equal to the additive identity.
impl Debug for Au
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Add for Au
[src]
type Output = Au
The resulting type after applying the +
operator.
fn add(self, other: Au) -> Au
[src]
Performs the +
operation.
impl Sub for Au
[src]
type Output = Au
The resulting type after applying the -
operator.
fn sub(self, other: Au) -> Au
[src]
Performs the -
operation.
impl Mul<Au> for i32
[src]
type Output = Au
The resulting type after applying the *
operator.
fn mul(self, other: Au) -> Au
[src]
Performs the *
operation.
impl Mul<i32> for Au
[src]
type Output = Au
The resulting type after applying the *
operator.
fn mul(self, other: i32) -> Au
[src]
Performs the *
operation.
impl Div for Au
[src]
type Output = i32
The resulting type after applying the /
operator.
fn div(self, other: Au) -> i32
[src]
Performs the /
operation.
impl Div<i32> for Au
[src]
type Output = Au
The resulting type after applying the /
operator.
fn div(self, other: i32) -> Au
[src]
Performs the /
operation.
impl Rem for Au
[src]
type Output = Au
The resulting type after applying the %
operator.
fn rem(self, other: Au) -> Au
[src]
Performs the %
operation.
impl Rem<i32> for Au
[src]
type Output = Au
The resulting type after applying the %
operator.
fn rem(self, other: i32) -> Au
[src]
Performs the %
operation.
impl Neg for Au
[src]
type Output = Au
The resulting type after applying the -
operator.
fn neg(self) -> Au
[src]
Performs the unary -
operation.
impl AddAssign for Au
[src]
fn add_assign(&mut self, other: Au)
[src]
Performs the +=
operation.
impl SubAssign for Au
[src]
fn sub_assign(&mut self, other: Au)
[src]
Performs the -=
operation.
impl MulAssign<i32> for Au
[src]
fn mul_assign(&mut self, other: i32)
[src]
Performs the *=
operation.
impl DivAssign<i32> for Au
[src]
fn div_assign(&mut self, other: i32)
[src]
Performs the /=
operation.