pub struct Bindings {
pub id: String,
pub url: String,
pub language: ProgrammingLanguage,
pub generator: BindingsGenerator,
}
Expand description
A library that exposes bindings to a Wasmer package.
Fields§
§id: String
A unique ID specifying this set of bindings.
url: String
The URL which can be used to download the files that were generated
(typically as a *.tar.gz
file).
language: ProgrammingLanguage
The programming language these bindings are written in.
generator: BindingsGenerator
The generator used to generate these bindings.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bindings
impl RefUnwindSafe for Bindings
impl Send for Bindings
impl Sync for Bindings
impl Unpin for Bindings
impl UnwindSafe for Bindings
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