pub enum Blob {
Directory(Directory),
File(File),
}Expand description
Represents a file or directory from any storage service.
Variants§
Directory(Directory)
Represents a directory that was located somewhere.
File(File)
Representation of a Blob that is a file.
Auto Trait Implementations§
impl RefUnwindSafe for Blob
impl Send for Blob
impl Sync for Blob
impl Unpin for Blob
impl UnwindSafe for Blob
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