[][src]Struct isilon::models::FsaResultExtended

pub struct FsaResultExtended {
    pub pinned: bool,
    pub begin_time: i32,
    pub content_path: Option<String>,
    pub delete_link: Option<String>,
    pub end_time: i32,
    pub fsa_state: String,
    pub id: i32,
    pub job_state: Vec<String>,
    pub properties_link: String,
    pub size: u64,
    pub version: i32,
}

Fields

pinned: bool

True if the result is pinned to prevent automatic removal.

begin_time: i32

Unix Epoch time of start of results collection job.

content_path: Option<String>

Path to results database.

delete_link: Option<String>

Resource to call with DELETE to remove results..

end_time: i32

Unix Epoch time of end of results collection job.

fsa_state: String

State of the result set.

id: i32

The system generated result set ID.

job_state: Vec<String>

State information about the FSA Job.

properties_link: String

Resource to call to get result properties.

size: u64

Size of the result set database in bytes.

version: i32

FSA version used to create result set.

Trait Implementations

impl Debug for FsaResultExtended[src]

impl Serialize for FsaResultExtended[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T