Struct google_dfareporting3d2::api::File[][src]

pub struct File {
    pub date_range: Option<DateRange>,
    pub etag: Option<String>,
    pub file_name: Option<String>,
    pub format: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub last_modified_time: Option<String>,
    pub report_id: Option<String>,
    pub status: Option<String>,
    pub urls: Option<FileUrls>,
}

Represents a File resource. A file contains the metadata for a report run. It shows the status of the run and holds the URLs to the generated report data if the run is finished and the status is “REPORT_AVAILABLE”.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

date_range: Option<DateRange>

The date range for which the file has report data. The date range will always be the absolute date range for which the report is run.

etag: Option<String>

The eTag of this response for caching purposes.

file_name: Option<String>

The filename of the file.

format: Option<String>

The output format of the report. Only available once the file is available.

id: Option<String>

The unique ID of this report file.

kind: Option<String>

The kind of resource this is, in this case dfareporting#file.

last_modified_time: Option<String>

The timestamp in milliseconds since epoch when this file was last modified.

report_id: Option<String>

The ID of the report this file was generated from.

status: Option<String>

The status of the report file.

urls: Option<FileUrls>

The URLs where the completed report file can be downloaded.

Trait Implementations

impl Clone for File[src]

impl Debug for File[src]

impl Default for File[src]

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

impl Resource for File[src]

impl ResponseResult for File[src]

impl Serialize for File[src]

Auto Trait Implementations

impl RefUnwindSafe for File

impl Send for File

impl Sync for File

impl Unpin for File

impl UnwindSafe for File

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> 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.