Struct pb_async::UploadRequestResponse[][src]

pub struct UploadRequestResponse {
    pub file_name: String,
    pub file_type: String,
    pub file_url: String,
    // some fields omitted
}

Fields

The file name that will be used for the file. (may be truncated from original file name)

The file type that will be used for the file (may be different from the one provided to upload_request)

The URL where the file will be available after it is uploaded.

Trait Implementations

impl Clone for UploadRequestResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UploadRequestResponse
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations