pub struct LibraryInfo {
pub library_name: String,
pub engine: String,
pub functions: Vec<FunctionInfo>,
pub library_code: Option<String>,
}
Fields§
§library_name: String
§engine: String
§functions: Vec<FunctionInfo>
§library_code: Option<String>
Trait Implementations§
Source§impl Debug for LibraryInfo
impl Debug for LibraryInfo
Source§impl FromValue for LibraryInfo
impl FromValue for LibraryInfo
Auto Trait Implementations§
impl Freeze for LibraryInfo
impl RefUnwindSafe for LibraryInfo
impl Send for LibraryInfo
impl Sync for LibraryInfo
impl Unpin for LibraryInfo
impl UnwindSafe for LibraryInfo
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