Struct phabricator_api::types::SearchData[][src]

pub struct SearchData<A, F> {
    pub id: u32,
    pub ty: String,
    pub phid: Phid,
    pub fields: F,
    pub attachments: A,
}

Fields

id: u32ty: Stringphid: Phidfields: Fattachments: A

Trait Implementations

impl<A: Debug, F: Debug> Debug for SearchData<A, F>[src]

impl<'de, A, F> Deserialize<'de> for SearchData<A, F> where
    A: Deserialize<'de>,
    F: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<A, F> RefUnwindSafe for SearchData<A, F> where
    A: RefUnwindSafe,
    F: RefUnwindSafe

impl<A, F> Send for SearchData<A, F> where
    A: Send,
    F: Send

impl<A, F> Sync for SearchData<A, F> where
    A: Sync,
    F: Sync

impl<A, F> Unpin for SearchData<A, F> where
    A: Unpin,
    F: Unpin

impl<A, F> UnwindSafe for SearchData<A, F> where
    A: UnwindSafe,
    F: UnwindSafe

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.