Struct clock_zones::Clock[][src]

#[repr(transparent)]
pub struct Clock(_);

Represents either the constant zero clock or a clock variable.

Implementations

impl Clock[src]

pub const ZERO: Clock[src]

The constant zero clock.

pub fn variable(number: usize) -> Variable[src]

Constructs a Variable with the given number.

Trait Implementations

impl AnyClock for Clock[src]

impl Clone for Clock[src]

impl Copy for Clock[src]

impl Debug for Clock[src]

impl Eq for Clock[src]

impl From<Variable> for Clock[src]

impl Hash for Clock[src]

impl PartialEq<Clock> for Clock[src]

impl StructuralEq for Clock[src]

impl StructuralPartialEq for Clock[src]

impl TryFrom<Clock> for Variable[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Clock

impl Send for Clock

impl Sync for Clock

impl Unpin for Clock

impl UnwindSafe for Clock

Blanket Implementations

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

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

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

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

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, 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.