[][src]Struct libpulse_binding::time::Timeval

#[repr(C)]
pub struct Timeval(pub timeval);

Wrapper for libc::timeval, attaching various methods and trait implementations.

Methods

impl Timeval[src]

pub fn new(sec: time_t, usec: suseconds_t) -> Self[src]

Creates a new instance, with values provided.

pub fn new_zero() -> Self[src]

Creates a new instance, with value of zero.

pub fn diff(a: &Self, b: &Self) -> MicroSeconds[src]

Calculates the difference between the two specified timeval structs.

pub fn age(&self) -> MicroSeconds[src]

Gets the time difference between now and self.

pub fn checked_add(self, other: Self) -> Option<Self>[src]

pub fn checked_add_us(self, rhs: MicroSeconds) -> Option<Self>[src]

pub fn checked_add_duration(self, rhs: Duration) -> Option<Self>[src]

pub fn checked_sub(self, other: Self) -> Option<Self>[src]

pub fn checked_sub_us(self, rhs: MicroSeconds) -> Option<Self>[src]

pub fn checked_sub_duration(self, rhs: Duration) -> Option<Self>[src]

pub fn checked_mul(self, rhs: u32) -> Option<Self>[src]

pub fn checked_div(self, rhs: u32) -> Option<Self>[src]

pub fn checked_rem(self, rhs: u32) -> Option<Self>[src]

Trait Implementations

impl Copy for Timeval[src]

impl Ord for Timeval[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Clone for Timeval[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Timeval> for Timeval[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl From<Timeval> for MicroSeconds[src]

impl From<MicroSeconds> for Timeval[src]

impl From<Duration> for Timeval[src]

impl From<Timeval> for Duration[src]

impl Eq for Timeval[src]

impl PartialOrd<Timeval> for Timeval[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for Timeval[src]

impl Add<Timeval> for Timeval[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<MicroSeconds> for Timeval[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<Duration> for Timeval[src]

type Output = Self

The resulting type after applying the + operator.

impl Sub<Timeval> for Timeval[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<MicroSeconds> for Timeval[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<Duration> for Timeval[src]

type Output = Self

The resulting type after applying the - operator.

impl Mul<u32> for Timeval[src]

type Output = Self

The resulting type after applying the * operator.

impl Div<u32> for Timeval[src]

type Output = Self

The resulting type after applying the / operator.

impl Rem<u32> for Timeval[src]

type Output = Self

The resulting type after applying the % operator.

impl AddAssign<Timeval> for Timeval[src]

impl AddAssign<MicroSeconds> for Timeval[src]

impl AddAssign<Duration> for Timeval[src]

impl SubAssign<Timeval> for Timeval[src]

impl SubAssign<MicroSeconds> for Timeval[src]

impl SubAssign<Duration> for Timeval[src]

impl MulAssign<u32> for Timeval[src]

impl DivAssign<u32> for Timeval[src]

impl RemAssign<u32> for Timeval[src]

Auto Trait Implementations

impl Sync for Timeval

impl Unpin for Timeval

impl Send for Timeval

impl UnwindSafe for Timeval

impl RefUnwindSafe for Timeval

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]