pub type ObjectMetadata = ObjectMetadata;
Aliased Type§
struct ObjectMetadata {
pub name: String,
pub container: String,
pub created_at: u64,
pub size: u64,
}
Fields§
§name: String
the object’s name
container: String
the object’s parent container
created_at: u64
date and time the object was created
size: u64
size of the object, in bytes
Trait Implementations
Source§impl Clone for ObjectMetadata
impl Clone for ObjectMetadata
Source§fn clone(&self) -> ObjectMetadata
fn clone(&self) -> ObjectMetadata
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more