pub struct ResolvedLuaDependency {
pub name: String,
pub library_path: PathBuf,
pub luaopen_symbols: Vec<String>,
pub version: Option<String>,
pub lua_files: Vec<PathBuf>,
}Fields§
§name: String§library_path: PathBuf§luaopen_symbols: Vec<String>§version: Option<String>§lua_files: Vec<PathBuf>Trait Implementations§
Source§impl Clone for ResolvedLuaDependency
impl Clone for ResolvedLuaDependency
Source§fn clone(&self) -> ResolvedLuaDependency
fn clone(&self) -> ResolvedLuaDependency
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResolvedLuaDependency
impl RefUnwindSafe for ResolvedLuaDependency
impl Send for ResolvedLuaDependency
impl Sync for ResolvedLuaDependency
impl Unpin for ResolvedLuaDependency
impl UnsafeUnpin for ResolvedLuaDependency
impl UnwindSafe for ResolvedLuaDependency
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