[][src]Struct j4rs::InstanceReceiver

pub struct InstanceReceiver { /* fields omitted */ }

A receiver for Java Instances.

It keeps a channel Receiver to get callback Instances from the Java world and the address of a Box<Sender> Box in the heap. This Box is used by Java to communicate asynchronously Instances to Rust.

On Drop, the InstanceReceiver removes the Box from the heap.

Methods

impl InstanceReceiver[src]

pub fn rx(&self) -> &Receiver<Instance>[src]

Trait Implementations

impl Drop for InstanceReceiver[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]