Enum wasm_bindgen_backend::ast::TypeLocation
source · pub enum TypeLocation {
ImportArgument,
ImportRet,
ExportArgument,
ExportRet,
}
Expand description
Unused, the location of a type for a function argument (import/export, argument/ret)
Variants§
ImportArgument
An imported argument (JS side type)
ImportRet
An imported return
ExportArgument
An exported argument (Rust side type)
ExportRet
An exported return
Trait Implementations§
source§impl Clone for TypeLocation
impl Clone for TypeLocation
source§fn clone(&self) -> TypeLocation
fn clone(&self) -> TypeLocation
Returns a copy 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 moresource§impl Debug for TypeLocation
impl Debug for TypeLocation
source§impl PartialEq for TypeLocation
impl PartialEq for TypeLocation
source§fn eq(&self, other: &TypeLocation) -> bool
fn eq(&self, other: &TypeLocation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TypeLocation
impl Eq for TypeLocation
impl StructuralPartialEq for TypeLocation
Auto Trait Implementations§
impl RefUnwindSafe for TypeLocation
impl Send for TypeLocation
impl Sync for TypeLocation
impl Unpin for TypeLocation
impl UnwindSafe for TypeLocation
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