Struct gstreamer::ClockTime [−][src]
Methods
impl ClockTime
[src]
impl ClockTime
pub fn hours(&self) -> Option<u64>
[src]
pub fn hours(&self) -> Option<u64>
pub fn minutes(&self) -> Option<u64>
[src]
pub fn minutes(&self) -> Option<u64>
pub fn seconds(&self) -> Option<u64>
[src]
pub fn seconds(&self) -> Option<u64>
pub fn mseconds(&self) -> Option<u64>
[src]
pub fn mseconds(&self) -> Option<u64>
pub fn useconds(&self) -> Option<u64>
[src]
pub fn useconds(&self) -> Option<u64>
pub fn nseconds(&self) -> Option<u64>
[src]
pub fn nseconds(&self) -> Option<u64>
pub fn nanoseconds(&self) -> Option<u64>
[src]
pub fn nanoseconds(&self) -> Option<u64>
pub fn from_seconds(seconds: u64) -> ClockTime
[src]
pub fn from_seconds(seconds: u64) -> ClockTime
pub fn from_mseconds(mseconds: u64) -> ClockTime
[src]
pub fn from_mseconds(mseconds: u64) -> ClockTime
pub fn from_useconds(useconds: u64) -> ClockTime
[src]
pub fn from_useconds(useconds: u64) -> ClockTime
pub fn from_nseconds(nseconds: u64) -> ClockTime
[src]
pub fn from_nseconds(nseconds: u64) -> ClockTime
pub fn none() -> ClockTime
[src]
pub fn none() -> ClockTime
Methods from Deref<Target = Option<u64>>
pub fn is_some(&self) -> bool
1.0.0[src]
pub fn is_some(&self) -> bool
Returns true
if the option is a Some
value.
Examples
let x: Option<u32> = Some(2); assert_eq!(x.is_some(), true); let x: Option<u32> = None; assert_eq!(x.is_some(), false);
pub fn is_none(&self) -> bool
1.0.0[src]
pub fn is_none(&self) -> bool
Returns true
if the option is a None
value.
Examples
let x: Option<u32> = Some(2); assert_eq!(x.is_none(), false); let x: Option<u32> = None; assert_eq!(x.is_none(), true);
pub fn as_ref(&self) -> Option<&T>
1.0.0[src]
pub fn as_ref(&self) -> Option<&T>
Converts from Option<T>
to Option<&T>
.
Examples
Convert an Option<
String
>
into an Option<
usize
>
, preserving the original.
The map
method takes the self
argument by value, consuming the original,
so this technique uses as_ref
to first take an Option
to a reference
to the value inside the original.
let text: Option<String> = Some("Hello, world!".to_string()); // First, cast `Option<String>` to `Option<&String>` with `as_ref`, // then consume *that* with `map`, leaving `text` on the stack. let text_length: Option<usize> = text.as_ref().map(|s| s.len()); println!("still can print text: {:?}", text);
pub fn as_mut(&mut self) -> Option<&mut T>
1.0.0[src]
pub fn as_mut(&mut self) -> Option<&mut T>
Converts from Option<T>
to Option<&mut T>
.
Examples
let mut x = Some(2); match x.as_mut() { Some(v) => *v = 42, None => {}, } assert_eq!(x, Some(42));
pub fn as_pin_mut(self: PinMut<'a, Option<T>>) -> Option<PinMut<'a, T>>
[src]
pub fn as_pin_mut(self: PinMut<'a, Option<T>>) -> Option<PinMut<'a, T>>
pin
)Converts from Option<T>
to Option<PinMut<'_, T>>
ⓘImportant traits for Iter<'a, A>pub fn iter(&self) -> Iter<T>
1.0.0[src]
pub fn iter(&self) -> Iter<T>
Returns an iterator over the possibly contained value.
Examples
let x = Some(4); assert_eq!(x.iter().next(), Some(&4)); let x: Option<u32> = None; assert_eq!(x.iter().next(), None);
ⓘImportant traits for IterMut<'a, A>pub fn iter_mut(&mut self) -> IterMut<T>
1.0.0[src]
pub fn iter_mut(&mut self) -> IterMut<T>
Returns a mutable iterator over the possibly contained value.
Examples
let mut x = Some(4); match x.iter_mut().next() { Some(v) => *v = 42, None => {}, } assert_eq!(x, Some(42)); let mut x: Option<u32> = None; assert_eq!(x.iter_mut().next(), None);
ⓘImportant traits for &'a mut Rpub fn get_or_insert(&mut self, v: T) -> &mut T
1.20.0[src]
pub fn get_or_insert(&mut self, v: T) -> &mut T
Inserts v
into the option if it is None
, then
returns a mutable reference to the contained value.
Examples
let mut x = None; { let y: &mut u32 = x.get_or_insert(5); assert_eq!(y, &5); *y = 7; } assert_eq!(x, Some(7));
ⓘImportant traits for &'a mut Rpub fn get_or_insert_with<F>(&mut self, f: F) -> &mut T where
F: FnOnce() -> T,
1.20.0[src]
pub fn get_or_insert_with<F>(&mut self, f: F) -> &mut T where
F: FnOnce() -> T,
Inserts a value computed from f
into the option if it is None
, then
returns a mutable reference to the contained value.
Examples
let mut x = None; { let y: &mut u32 = x.get_or_insert_with(|| 5); assert_eq!(y, &5); *y = 7; } assert_eq!(x, Some(7));
pub fn take(&mut self) -> Option<T>
1.0.0[src]
pub fn take(&mut self) -> Option<T>
Trait Implementations
impl PartialEq for ClockTime
[src]
impl PartialEq for ClockTime
fn eq(&self, other: &ClockTime) -> bool
[src]
fn eq(&self, other: &ClockTime) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &ClockTime) -> bool
[src]
fn ne(&self, other: &ClockTime) -> bool
This method tests for !=
.
impl Eq for ClockTime
[src]
impl Eq for ClockTime
impl PartialOrd for ClockTime
[src]
impl PartialOrd for ClockTime
fn partial_cmp(&self, other: &ClockTime) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &ClockTime) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &ClockTime) -> bool
[src]
fn lt(&self, other: &ClockTime) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &ClockTime) -> bool
[src]
fn le(&self, other: &ClockTime) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &ClockTime) -> bool
[src]
fn gt(&self, other: &ClockTime) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &ClockTime) -> bool
[src]
fn ge(&self, other: &ClockTime) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for ClockTime
[src]
impl Ord for ClockTime
fn cmp(&self, other: &ClockTime) -> Ordering
[src]
fn cmp(&self, other: &ClockTime) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Hash for ClockTime
[src]
impl Hash for ClockTime
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
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]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Clone for ClockTime
[src]
impl Clone for ClockTime
fn clone(&self) -> ClockTime
[src]
fn clone(&self) -> ClockTime
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for ClockTime
[src]
impl Copy for ClockTime
impl Debug for ClockTime
[src]
impl Debug for ClockTime
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for ClockTime
[src]
impl Default for ClockTime
impl Display for ClockTime
[src]
impl Display for ClockTime
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl From<ClockTime> for GenericFormattedValue
[src]
impl From<ClockTime> for GenericFormattedValue
fn from(v: ClockTime) -> GenericFormattedValue
[src]
fn from(v: ClockTime) -> GenericFormattedValue
Performs the conversion.
impl FormattedValue for ClockTime
[src]
impl FormattedValue for ClockTime
fn get_default_format() -> Format
[src]
fn get_default_format() -> Format
fn try_from(v: GenericFormattedValue) -> Option<Self>
[src]
fn try_from(v: GenericFormattedValue) -> Option<Self>
fn get_format(&self) -> Format
[src]
fn get_format(&self) -> Format
unsafe fn from_raw(format: Format, value: i64) -> Self
[src]
unsafe fn from_raw(format: Format, value: i64) -> Self
unsafe fn to_raw_value(&self) -> i64
[src]
unsafe fn to_raw_value(&self) -> i64
impl SpecificFormattedValue for ClockTime
[src]
impl SpecificFormattedValue for ClockTime
impl From<u64> for ClockTime
[src]
impl From<u64> for ClockTime
impl From<Option<u64>> for ClockTime
[src]
impl From<Option<u64>> for ClockTime
impl Into<Option<u64>> for ClockTime
[src]
impl Into<Option<u64>> for ClockTime
impl Deref for ClockTime
[src]
impl Deref for ClockTime
type Target = Option<u64>
The resulting type after dereferencing.
fn deref(&self) -> &Option<u64>
[src]
fn deref(&self) -> &Option<u64>
Dereferences the value.
impl DerefMut for ClockTime
[src]
impl DerefMut for ClockTime
impl AsRef<Option<u64>> for ClockTime
[src]
impl AsRef<Option<u64>> for ClockTime
impl AsMut<Option<u64>> for ClockTime
[src]
impl AsMut<Option<u64>> for ClockTime
impl Add<ClockTime> for ClockTime
[src]
impl Add<ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the +
operator.
fn add(self, other: ClockTime) -> ClockTime
[src]
fn add(self, other: ClockTime) -> ClockTime
Performs the +
operation.
impl<'a> Add<&'a ClockTime> for ClockTime
[src]
impl<'a> Add<&'a ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the +
operator.
fn add(self, other: &'a ClockTime) -> ClockTime
[src]
fn add(self, other: &'a ClockTime) -> ClockTime
Performs the +
operation.
impl AddAssign<ClockTime> for ClockTime
[src]
impl AddAssign<ClockTime> for ClockTime
fn add_assign(&mut self, other: ClockTime)
[src]
fn add_assign(&mut self, other: ClockTime)
Performs the +=
operation.
impl<'a> AddAssign<&'a ClockTime> for ClockTime
[src]
impl<'a> AddAssign<&'a ClockTime> for ClockTime
fn add_assign(&mut self, other: &'a ClockTime)
[src]
fn add_assign(&mut self, other: &'a ClockTime)
Performs the +=
operation.
impl Sub<ClockTime> for ClockTime
[src]
impl Sub<ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the -
operator.
fn sub(self, other: ClockTime) -> ClockTime
[src]
fn sub(self, other: ClockTime) -> ClockTime
Performs the -
operation.
impl<'a> Sub<&'a ClockTime> for ClockTime
[src]
impl<'a> Sub<&'a ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the -
operator.
fn sub(self, other: &'a ClockTime) -> ClockTime
[src]
fn sub(self, other: &'a ClockTime) -> ClockTime
Performs the -
operation.
impl SubAssign<ClockTime> for ClockTime
[src]
impl SubAssign<ClockTime> for ClockTime
fn sub_assign(&mut self, other: ClockTime)
[src]
fn sub_assign(&mut self, other: ClockTime)
Performs the -=
operation.
impl<'a> SubAssign<&'a ClockTime> for ClockTime
[src]
impl<'a> SubAssign<&'a ClockTime> for ClockTime
fn sub_assign(&mut self, other: &'a ClockTime)
[src]
fn sub_assign(&mut self, other: &'a ClockTime)
Performs the -=
operation.
impl Mul<ClockTime> for ClockTime
[src]
impl Mul<ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the *
operator.
fn mul(self, other: ClockTime) -> ClockTime
[src]
fn mul(self, other: ClockTime) -> ClockTime
Performs the *
operation.
impl<'a> Mul<&'a ClockTime> for ClockTime
[src]
impl<'a> Mul<&'a ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the *
operator.
fn mul(self, other: &'a ClockTime) -> ClockTime
[src]
fn mul(self, other: &'a ClockTime) -> ClockTime
Performs the *
operation.
impl MulAssign<ClockTime> for ClockTime
[src]
impl MulAssign<ClockTime> for ClockTime
fn mul_assign(&mut self, other: ClockTime)
[src]
fn mul_assign(&mut self, other: ClockTime)
Performs the *=
operation.
impl<'a> MulAssign<&'a ClockTime> for ClockTime
[src]
impl<'a> MulAssign<&'a ClockTime> for ClockTime
fn mul_assign(&mut self, other: &'a ClockTime)
[src]
fn mul_assign(&mut self, other: &'a ClockTime)
Performs the *=
operation.
impl Div<ClockTime> for ClockTime
[src]
impl Div<ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the /
operator.
fn div(self, other: ClockTime) -> ClockTime
[src]
fn div(self, other: ClockTime) -> ClockTime
Performs the /
operation.
impl<'a> Div<&'a ClockTime> for ClockTime
[src]
impl<'a> Div<&'a ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the /
operator.
fn div(self, other: &'a ClockTime) -> ClockTime
[src]
fn div(self, other: &'a ClockTime) -> ClockTime
Performs the /
operation.
impl DivAssign<ClockTime> for ClockTime
[src]
impl DivAssign<ClockTime> for ClockTime
fn div_assign(&mut self, other: ClockTime)
[src]
fn div_assign(&mut self, other: ClockTime)
Performs the /=
operation.
impl<'a> DivAssign<&'a ClockTime> for ClockTime
[src]
impl<'a> DivAssign<&'a ClockTime> for ClockTime
fn div_assign(&mut self, other: &'a ClockTime)
[src]
fn div_assign(&mut self, other: &'a ClockTime)
Performs the /=
operation.
impl Rem<ClockTime> for ClockTime
[src]
impl Rem<ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the %
operator.
fn rem(self, other: ClockTime) -> ClockTime
[src]
fn rem(self, other: ClockTime) -> ClockTime
Performs the %
operation.
impl<'a> Rem<&'a ClockTime> for ClockTime
[src]
impl<'a> Rem<&'a ClockTime> for ClockTime
type Output = ClockTime
The resulting type after applying the %
operator.
fn rem(self, other: &'a ClockTime) -> ClockTime
[src]
fn rem(self, other: &'a ClockTime) -> ClockTime
Performs the %
operation.
impl RemAssign<ClockTime> for ClockTime
[src]
impl RemAssign<ClockTime> for ClockTime
fn rem_assign(&mut self, other: ClockTime)
[src]
fn rem_assign(&mut self, other: ClockTime)
Performs the %=
operation.
impl<'a> RemAssign<&'a ClockTime> for ClockTime
[src]
impl<'a> RemAssign<&'a ClockTime> for ClockTime
fn rem_assign(&mut self, other: &'a ClockTime)
[src]
fn rem_assign(&mut self, other: &'a ClockTime)
Performs the %=
operation.
impl Mul<u64> for ClockTime
[src]
impl Mul<u64> for ClockTime
type Output = ClockTime
The resulting type after applying the *
operator.
fn mul(self, other: u64) -> ClockTime
[src]
fn mul(self, other: u64) -> ClockTime
Performs the *
operation.
impl<'a> Mul<&'a u64> for ClockTime
[src]
impl<'a> Mul<&'a u64> for ClockTime
type Output = ClockTime
The resulting type after applying the *
operator.
fn mul(self, other: &'a u64) -> ClockTime
[src]
fn mul(self, other: &'a u64) -> ClockTime
Performs the *
operation.
impl MulAssign<u64> for ClockTime
[src]
impl MulAssign<u64> for ClockTime
fn mul_assign(&mut self, other: u64)
[src]
fn mul_assign(&mut self, other: u64)
Performs the *=
operation.
impl<'a> MulAssign<&'a u64> for ClockTime
[src]
impl<'a> MulAssign<&'a u64> for ClockTime
fn mul_assign(&mut self, other: &'a u64)
[src]
fn mul_assign(&mut self, other: &'a u64)
Performs the *=
operation.
impl Div<u64> for ClockTime
[src]
impl Div<u64> for ClockTime
type Output = ClockTime
The resulting type after applying the /
operator.
fn div(self, other: u64) -> ClockTime
[src]
fn div(self, other: u64) -> ClockTime
Performs the /
operation.
impl<'a> Div<&'a u64> for ClockTime
[src]
impl<'a> Div<&'a u64> for ClockTime
type Output = ClockTime
The resulting type after applying the /
operator.
fn div(self, other: &'a u64) -> ClockTime
[src]
fn div(self, other: &'a u64) -> ClockTime
Performs the /
operation.
impl DivAssign<u64> for ClockTime
[src]
impl DivAssign<u64> for ClockTime
fn div_assign(&mut self, other: u64)
[src]
fn div_assign(&mut self, other: u64)
Performs the /=
operation.
impl<'a> DivAssign<&'a u64> for ClockTime
[src]
impl<'a> DivAssign<&'a u64> for ClockTime
fn div_assign(&mut self, other: &'a u64)
[src]
fn div_assign(&mut self, other: &'a u64)
Performs the /=
operation.
impl Rem<u64> for ClockTime
[src]
impl Rem<u64> for ClockTime
type Output = ClockTime
The resulting type after applying the %
operator.
fn rem(self, other: u64) -> ClockTime
[src]
fn rem(self, other: u64) -> ClockTime
Performs the %
operation.
impl<'a> Rem<&'a u64> for ClockTime
[src]
impl<'a> Rem<&'a u64> for ClockTime
type Output = ClockTime
The resulting type after applying the %
operator.
fn rem(self, other: &'a u64) -> ClockTime
[src]
fn rem(self, other: &'a u64) -> ClockTime
Performs the %
operation.
impl RemAssign<u64> for ClockTime
[src]
impl RemAssign<u64> for ClockTime
fn rem_assign(&mut self, other: u64)
[src]
fn rem_assign(&mut self, other: u64)
Performs the %=
operation.
impl<'a> RemAssign<&'a u64> for ClockTime
[src]
impl<'a> RemAssign<&'a u64> for ClockTime
fn rem_assign(&mut self, other: &'a u64)
[src]
fn rem_assign(&mut self, other: &'a u64)
Performs the %=
operation.
impl Mul<ClockTime> for u64
[src]
impl Mul<ClockTime> for u64
type Output = ClockTime
The resulting type after applying the *
operator.
fn mul(self, other: ClockTime) -> ClockTime
[src]
fn mul(self, other: ClockTime) -> ClockTime
Performs the *
operation.
impl<'a> Mul<&'a ClockTime> for u64
[src]
impl<'a> Mul<&'a ClockTime> for u64
type Output = ClockTime
The resulting type after applying the *
operator.
fn mul(self, other: &'a ClockTime) -> ClockTime
[src]
fn mul(self, other: &'a ClockTime) -> ClockTime
Performs the *
operation.
impl MulDiv<ClockTime> for ClockTime
[src]
impl MulDiv<ClockTime> for ClockTime
type Output = ClockTime
fn mul_div_floor(self, num: ClockTime, denom: ClockTime) -> Option<Self::Output>
[src]
fn mul_div_floor(self, num: ClockTime, denom: ClockTime) -> Option<Self::Output>
Calculates floor(val * num / denom)
, i.e. the next integer to the result of the division with the smaller absolute value. Read more
fn mul_div_round(self, num: ClockTime, denom: ClockTime) -> Option<Self::Output>
[src]
fn mul_div_round(self, num: ClockTime, denom: ClockTime) -> Option<Self::Output>
Calculates round(val * num / denom)
, i.e. the closest integer to the result of the division. If both surrounding integers are the same distance, the one with the bigger absolute value is returned. Read more
fn mul_div_ceil(self, num: ClockTime, denom: ClockTime) -> Option<Self::Output>
[src]
fn mul_div_ceil(self, num: ClockTime, denom: ClockTime) -> Option<Self::Output>
Calculates ceil(val * num / denom)
, i.e. the next integer to the result of the division with the bigger absolute value. Read more
impl<'a> MulDiv<&'a ClockTime> for ClockTime
[src]
impl<'a> MulDiv<&'a ClockTime> for ClockTime
type Output = ClockTime
fn mul_div_floor(
self,
num: &ClockTime,
denom: &ClockTime
) -> Option<Self::Output>
[src]
fn mul_div_floor(
self,
num: &ClockTime,
denom: &ClockTime
) -> Option<Self::Output>
Calculates floor(val * num / denom)
, i.e. the next integer to the result of the division with the smaller absolute value. Read more
fn mul_div_round(
self,
num: &ClockTime,
denom: &ClockTime
) -> Option<Self::Output>
[src]
fn mul_div_round(
self,
num: &ClockTime,
denom: &ClockTime
) -> Option<Self::Output>
Calculates round(val * num / denom)
, i.e. the closest integer to the result of the division. If both surrounding integers are the same distance, the one with the bigger absolute value is returned. Read more
fn mul_div_ceil(
self,
num: &ClockTime,
denom: &ClockTime
) -> Option<Self::Output>
[src]
fn mul_div_ceil(
self,
num: &ClockTime,
denom: &ClockTime
) -> Option<Self::Output>
Calculates ceil(val * num / denom)
, i.e. the next integer to the result of the division with the bigger absolute value. Read more
impl<'a> MulDiv<u64> for ClockTime
[src]
impl<'a> MulDiv<u64> for ClockTime
type Output = ClockTime
fn mul_div_floor(self, num: u64, denom: u64) -> Option<Self::Output>
[src]
fn mul_div_floor(self, num: u64, denom: u64) -> Option<Self::Output>
Calculates floor(val * num / denom)
, i.e. the next integer to the result of the division with the smaller absolute value. Read more
fn mul_div_round(self, num: u64, denom: u64) -> Option<Self::Output>
[src]
fn mul_div_round(self, num: u64, denom: u64) -> Option<Self::Output>
Calculates round(val * num / denom)
, i.e. the closest integer to the result of the division. If both surrounding integers are the same distance, the one with the bigger absolute value is returned. Read more
fn mul_div_ceil(self, num: u64, denom: u64) -> Option<Self::Output>
[src]
fn mul_div_ceil(self, num: u64, denom: u64) -> Option<Self::Output>
Calculates ceil(val * num / denom)
, i.e. the next integer to the result of the division with the bigger absolute value. Read more
impl<'a> MulDiv<&'a u64> for ClockTime
[src]
impl<'a> MulDiv<&'a u64> for ClockTime
type Output = ClockTime
fn mul_div_floor(self, num: &u64, denom: &u64) -> Option<Self::Output>
[src]
fn mul_div_floor(self, num: &u64, denom: &u64) -> Option<Self::Output>
Calculates floor(val * num / denom)
, i.e. the next integer to the result of the division with the smaller absolute value. Read more
fn mul_div_round(self, num: &u64, denom: &u64) -> Option<Self::Output>
[src]
fn mul_div_round(self, num: &u64, denom: &u64) -> Option<Self::Output>
Calculates round(val * num / denom)
, i.e. the closest integer to the result of the division. If both surrounding integers are the same distance, the one with the bigger absolute value is returned. Read more
fn mul_div_ceil(self, num: &u64, denom: &u64) -> Option<Self::Output>
[src]
fn mul_div_ceil(self, num: &u64, denom: &u64) -> Option<Self::Output>
Calculates ceil(val * num / denom)
, i.e. the next integer to the result of the division with the bigger absolute value. Read more