[][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> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.