pub struct LibraryInfo {
pub library_name: String,
pub engine: String,
pub functions: Vec<FunctionInfo>,
pub library_code: Option<String>,
}
Expand description
Result for the function_list
command.
Fields§
§library_name: String
the name of the library.
engine: String
the engine of the library.
functions: Vec<FunctionInfo>
the list of functions in the library.
library_code: Option<String>
the library’s source code (when given the
with_code
modifier).
Trait Implementations§
Source§impl Debug for LibraryInfo
impl Debug for LibraryInfo
Source§impl<'de> Deserialize<'de> for LibraryInfo
impl<'de> Deserialize<'de> for LibraryInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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