pub struct BlobMeta {
pub key: String,
pub size: Option<u64>,
}Expand description
Metadata about a stored blob.
Fields§
§key: StringThe key (path) of the blob.
size: Option<u64>Size in bytes, if known.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlobMeta
impl RefUnwindSafe for BlobMeta
impl Send for BlobMeta
impl Sync for BlobMeta
impl Unpin for BlobMeta
impl UnsafeUnpin for BlobMeta
impl UnwindSafe for BlobMeta
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more