pub struct SizedFile {
pub path: String,
pub size: u64,
}
Expand description
The path and size of the file.
Fields§
§path: String
Path of the file. It is relative to the current object
store (it does not specify the xx://
scheme).
size: u64
File size in total
Trait Implementations§
impl Eq for SizedFile
impl StructuralPartialEq for SizedFile
Auto Trait Implementations§
impl Freeze for SizedFile
impl RefUnwindSafe for SizedFile
impl Send for SizedFile
impl Sync for SizedFile
impl Unpin for SizedFile
impl UnwindSafe for SizedFile
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