pub struct JList<T>(pub Vec<T>);
Tuple Fields§
§0: Vec<T>
Implementations§
Trait Implementations§
Source§impl<'local, T> IntoJavaType<'local, JObject<'local>> for JList<T>where
T: IntoJavaType<'local, JObject<'local>>,
impl<'local, T> IntoJavaType<'local, JObject<'local>> for JList<T>where
T: IntoJavaType<'local, JObject<'local>>,
Source§impl<'local, T> IntoRustType<'local, JList<T>> for JObject<'local>
impl<'local, T> IntoRustType<'local, JList<T>> for JObject<'local>
Source§impl<'local, T> JTypeInfo<'local> for JList<T>where
T: IntoJavaType<'local, JObject<'local>>,
impl<'local, T> JTypeInfo<'local> for JList<T>where
T: IntoJavaType<'local, JObject<'local>>,
fn j_return_type() -> ReturnType
fn j_type() -> JavaType
fn into_j_value(self, env: &mut JNIEnv<'local>) -> JResult<JValueOwned<'local>>
fn j_value_type(&self) -> JavaType
Auto Trait Implementations§
impl<T> Freeze for JList<T>
impl<T> RefUnwindSafe for JList<T>where
T: RefUnwindSafe,
impl<T> Send for JList<T>where
T: Send,
impl<T> Sync for JList<T>where
T: Sync,
impl<T> Unpin for JList<T>where
T: Unpin,
impl<T> UnwindSafe for JList<T>where
T: UnwindSafe,
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