pub struct ArrayType<'a> {
pub dimension: usize,
pub ty: JavaType<'a>,
}
Expand description
Represents an array type.
Fields§
§dimension: usize
The dimention of the array. Always greater zero, by definition.
ty: JavaType<'a>
The type of the elements in the array.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ArrayType<'a>
impl<'a> RefUnwindSafe for ArrayType<'a>
impl<'a> Send for ArrayType<'a>
impl<'a> Sync for ArrayType<'a>
impl<'a> Unpin for ArrayType<'a>
impl<'a> UnwindSafe for ArrayType<'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