pub trait Blob {
    fn key(&self) -> &str;
    fn size(&self) -> usize;
    fn created(&self) -> DateTime<Utc>;
    fn accessed(&self) -> Option<DateTime<Utc>>;
}
Expand description

A blob contains general information about the blob.

Required Methods

The key (e.g. name) of the blob.

The number of bytes in the blob.

When the blob was originally created.

When the blob was last accessed.

Implementors