pub enum LibSource {
Bundled,
Trio(String),
Xeto(String),
Directory(PathBuf),
}Expand description
Tracks how a library was loaded.
Variants§
Bundled
Bundled into the binary at compile time.
Trio(String)
Loaded from Trio text.
Xeto(String)
Loaded from Xeto text.
Directory(PathBuf)
Loaded from a directory on disk.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LibSource
impl RefUnwindSafe for LibSource
impl Send for LibSource
impl Sync for LibSource
impl Unpin for LibSource
impl UnsafeUnpin for LibSource
impl UnwindSafe for LibSource
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