pub struct Feature { /* private fields */ }
Expand description
A Ruby source (“feature”) that has been loaded into an interpreter.
Features can either be loaded from disk or from memory.
Features are identified by the (potentially relative) path used when loading the file for the first time. Features loaded from disk are deduplicated by their real position on the underlying file system (i.e. their device and inode).
Implementations§
Source§impl Feature
impl Feature
Sourcepub fn with_handle_and_path(handle: Handle, path: PathBuf) -> Self
Available on crate feature disk
only.
pub fn with_handle_and_path(handle: Handle, path: PathBuf) -> Self
disk
only.Create a new feature from a file handle and path.
Sourcepub fn with_in_memory_path(path: PathBuf) -> Self
pub fn with_in_memory_path(path: PathBuf) -> Self
Create a new feature from a virtual in-memory path.
§Examples
use std::path::Path;
use mezzaluna_loaded_features::Feature;
let feature = Feature::with_in_memory_path("/src/_lib/test.rb".into());
assert_eq!(feature.path(), Path::new("/src/_lib/test.rb"));
Sourcepub fn path(&self) -> &Path
pub fn path(&self) -> &Path
Get the path associated with this feature.
The path returned by this method is not guaranteed to be the same as
the path returned by LoadedFeatures::features
since features may
be deduplicated by their physical location in the underlying loaders.
§Examples
use std::path::Path;
use mezzaluna_loaded_features::Feature;
let feature = Feature::with_in_memory_path("/src/_lib/test.rb".into());
assert_eq!(feature.path(), Path::new("/src/_lib/test.rb"));
Trait Implementations§
impl Eq for Feature
impl StructuralPartialEq for Feature
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnwindSafe for Feature
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