pub(crate) struct OpenedFile {
pub(crate) path: String,
pub(crate) cached_content: Option<Vec<u8>>,
pub(crate) read_spill: Option<Vec<u8>>,
}Fields§
§path: String§cached_content: Option<Vec<u8>>§read_spill: Option<Vec<u8>>Implementations§
Auto Trait Implementations§
impl Freeze for OpenedFile
impl RefUnwindSafe for OpenedFile
impl Send for OpenedFile
impl Sync for OpenedFile
impl Unpin for OpenedFile
impl UnsafeUnpin for OpenedFile
impl UnwindSafe for OpenedFile
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