pub enum JavaType {
Primitive(Primitive),
Object(String),
Array(Box<JavaType>),
Method(Box<TypeSignature>),
}
Expand description
Enum representing any java type in addition to method signatures.
Variants§
Trait Implementations§
impl Eq for JavaType
impl StructuralPartialEq for JavaType
Auto Trait Implementations§
impl Freeze for JavaType
impl RefUnwindSafe for JavaType
impl Send for JavaType
impl Sync for JavaType
impl Unpin for JavaType
impl UnwindSafe for JavaType
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