[][src]Enum orgize::elements::Clock

pub enum Clock<'a> {
    Closed {
        start: Datetime<'a>,
        end: Datetime<'a>,
        repeater: Option<Cow<'a, str>>,
        delay: Option<Cow<'a, str>>,
        duration: Cow<'a, str>,
        post_blank: usize,
    },
    Running {
        start: Datetime<'a>,
        repeater: Option<Cow<'a, str>>,
        delay: Option<Cow<'a, str>>,
        post_blank: usize,
    },
}

Clock Element

Variants

Closed

Closed Clock

Fields of Closed

start: Datetime<'a>

Time start

end: Datetime<'a>

Time end

repeater: Option<Cow<'a, str>>delay: Option<Cow<'a, str>>duration: Cow<'a, str>

Clock duration

post_blank: usize

Numbers of blank lines between the clock line and next non-blank line or buffer's end

Running

Running Clock

Fields of Running

start: Datetime<'a>

Time start

repeater: Option<Cow<'a, str>>delay: Option<Cow<'a, str>>post_blank: usize

Numbers of blank lines between the clock line and next non-blank line or buffer's end

Implementations

impl<'_> Clock<'_>[src]

pub fn into_onwed(self) -> Clock<'static>[src]

pub fn is_running(&self) -> bool[src]

Returns true if the clock is running.

pub fn is_closed(&self) -> bool[src]

Returns true if the clock is closed.

pub fn duration(&self) -> Option<&str>[src]

Returns clock duration, or None if it's running.

pub fn value(&self) -> Timestamp[src]

Constructs a timestamp from the clock.

Trait Implementations

impl<'a> Clone for Clock<'a>[src]

impl<'a> Debug for Clock<'a>[src]

impl<'a> From<Clock<'a>> for Element<'a>[src]

impl<'a> Serialize for Clock<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Clock<'a>

impl<'a> Send for Clock<'a>

impl<'a> Sync for Clock<'a>

impl<'a> Unpin for Clock<'a>

impl<'a> UnwindSafe for Clock<'a>

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.