[][src]Enum watchman_client::SinceTerm

pub enum SinceTerm {
    ObservedClock(ClockSpec),
    CreatedClock(ClockSpec),
    MTime(i64),
    CTime(i64),
}

Evaluates as true if the specified time property of the file is greater than the since value. https://facebook.github.io/watchman/docs/expr/since.html

Variants

ObservedClock(ClockSpec)

Yield true if the file was observed to be modified more recently than the specified clockspec

CreatedClock(ClockSpec)

Yield true if the file changed from !exists -> exists more recently than the specified clockspec

MTime(i64)

Yield true if the mtime stat field is >= the provided timestamp. Note that this is >= because it has 1-second granularity.

CTime(i64)

Yield true if the ctime stat field is >= the provided timestamp. Note that this is >= because it has 1-second granularity.

Trait Implementations

impl Clone for SinceTerm[src]

impl Debug for SinceTerm[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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]