pub trait Blob {
    // Required methods
    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.