Struct backblaze_b2::raw::files::MoreFileInfo [] [src]

pub struct MoreFileInfo<InfoType = JsonValue> {
    pub file_id: String,
    pub file_name: String,
    pub account_id: String,
    pub content_sha1: String,
    pub bucket_id: String,
    pub content_length: u64,
    pub content_type: String,
    pub file_info: InfoType,
    pub action: FileType,
    pub upload_timestamp: u64,
}

Contains information for a b2 file. This struct is returned by the function get_file_info and the functions for uploading files. This struct contains more information about the file compared to the FileInfo struct.

Fields

Trait Implementations

impl<InfoType: Debug> Debug for MoreFileInfo<InfoType>
[src]

Formats the value using the given formatter.

impl<InfoType: Clone> Clone for MoreFileInfo<InfoType>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<IT> Into<FileInfo<IT>> for MoreFileInfo<IT>
[src]

Performs the conversion.