pub enum ResultType<'a> {
VoidType,
ValueType(JavaType<'a>),
}
Expand description
Represents the type in method return position.
Variants§
Auto Trait Implementations§
impl<'a> Freeze for ResultType<'a>
impl<'a> RefUnwindSafe for ResultType<'a>
impl<'a> Send for ResultType<'a>
impl<'a> Sync for ResultType<'a>
impl<'a> Unpin for ResultType<'a>
impl<'a> UnwindSafe for ResultType<'a>
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