Struct toad_jni::java::Nullable

source ·
pub struct Nullable<T>(_, _);
Expand description

Helper type that wraps a type T without invoking java::Object::upcast on it, preventing potential NullPointerExceptions.

Implementations§

source§

impl<T> Nullable<T>where T: Class,

source

pub fn into_option(self, e: &mut Env<'_>) -> Option<T>

Convert this to Option<T>, invoking java::Object::upcast only if the object reference is non-null.

Trait Implementations§

source§

impl<T> Class for Nullable<T>where T: Class,

source§

const PATH: &'static str = T::PATH

The fully qualified java class path (slash-separated) Read more
source§

impl<T> Object for Nullable<T>where T: Class,

source§

fn upcast(_: &mut Env<'_>, jobj: Object) -> Self

Try to interpret an object as Self
source§

fn downcast(self, _: &mut Env<'_>) -> Object

Create an object reference from self
source§

fn downcast_ref(&self, e: &mut Env<'_>) -> Object

Create an object reference from &self
source§

fn upcast_value_ref<'e>(e: &mut Env<'e>, jv: JValue<'e, '_>) -> Selfwhere Self: Sized,

Try to interpret a JValue as Self
source§

fn upcast_value<'e>(e: &mut Env<'e>, jv: JValueOwned<'e>) -> Selfwhere Self: Sized,

Try to interpret a JValueOwned as Self
source§

fn downcast_value<'e>(self, e: &mut Env<'e>) -> JValueOwned<'e>where Self: Sized,

Create a JValueOwned from self
source§

fn yield_to_java(&self, e: &mut Env<'_>) -> jobject

Use this to yield ownership of a java::lang::Object to the JVM, for example when returning a jobject from a native function.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Nullable<T>where T: RefUnwindSafe,

§

impl<T> Send for Nullable<T>where T: Send,

§

impl<T> Sync for Nullable<T>where T: Sync,

§

impl<T> Unpin for Nullable<T>where T: Unpin,

§

impl<T> UnwindSafe for Nullable<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<F, A, TF, T> Sequence<F, A, TF> for T

source§

fn sequence<Ap>(self) -> <Ap as HKT1>::T<<F as HKT1>::T<A>>where Self: Sized + Traversable<F, <Ap as HKT1>::T<A>, A, TF> + Foldable<F, <Ap as HKT1>::T<A>>, Ap: HKT1, <Ap as HKT1>::T<A>: Applicative<Ap, A> + ApplyOnce<Ap, A>, <Ap as HKT1>::T<TF>: Applicative<Ap, TF> + ApplyOnce<Ap, TF>, <Ap as HKT1>::T<<F as HKT1>::T<A>>: Applicative<Ap, <F as HKT1>::T<A>> + ApplyOnce<Ap, <F as HKT1>::T<A>>, F: HKT1<T<<Ap as HKT1>::T<A>> = Self>,

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Type for Twhere T: Class,

source§

const SIG: Signature =

The signature for this type
source§

fn jni() -> JavaType

Get the jni rep of this type
source§

fn is_type_of(e: &mut Env<'_>, o: &JObject<'_>) -> bool

Determines whether an object is an instance of this type
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V