[][src]Struct google_dfareporting3d2::File

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

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

status: Option<String>

The status of the report file.

kind: Option<String>

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

format: Option<String>

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

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.

file_name: Option<String>

The filename of the file.

etag: Option<String>

The eTag of this response for caching purposes.

report_id: Option<String>

The ID of the report this file was generated from.

urls: Option<FileUrls>

The URLs where the completed report file can be downloaded.

last_modified_time: Option<String>

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

id: Option<String>

The unique ID of this report file.

Trait Implementations

impl Resource for File[src]

impl ResponseResult for File[src]

impl Default for File[src]

impl Clone for File[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for File[src]

impl Serialize for File[src]

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

Auto Trait Implementations

impl Send for File

impl Unpin for File

impl Sync for File

impl UnwindSafe for File

impl RefUnwindSafe for File

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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