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

pub struct FileInfo<InfoType = JsonValue> {
    pub file_id: String,
    pub file_name: String,
    pub content_length: u64,
    pub content_type: String,
    pub content_sha1: String,
    pub file_info: InfoType,
    pub upload_timestamp: u64,
}

Contains information for a b2 file. This struct is returned by the file listing functions and the functions for downloading files. Some other functions return additional information about the file than this struct, and they use the struct MoreFileInfo.

Fields

Trait Implementations

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more