Struct phabricator_api::maniphest::search::Fields[][src]

pub struct Fields {
    pub name: String,
    pub description: String,
    pub author_phid: Phid,
    pub owner_phid: Option<Phid>,
    pub closer_phid: Option<Phid>,
    pub status: Status,
    pub priority: Priority,
    pub points: Option<Decimal>,
    pub created: DateTime<Utc>,
    pub modified: DateTime<Utc>,
    pub closed: Option<DateTime<Utc>>,
    // some fields omitted
}

Fields

name: Stringdescription: Stringauthor_phid: Phidowner_phid: Option<Phid>closer_phid: Option<Phid>status: Statuspriority: Prioritypoints: Option<Decimal>created: DateTime<Utc>modified: DateTime<Utc>closed: Option<DateTime<Utc>>

Trait Implementations

impl Debug for Fields[src]

impl<'de> Deserialize<'de> for Fields[src]

Auto Trait Implementations

impl RefUnwindSafe for Fields

impl Send for Fields

impl Sync for Fields

impl Unpin for Fields

impl UnwindSafe for Fields

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.