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.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Blob
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