[]Struct jni_android_sys::java::net::DatagramSocket

#[repr(transparent)]
pub struct DatagramSocket(_);

public class DatagramSocket

Required feature: "java-net-DatagramSocket"

Methods

impl DatagramSocket

pub fn new<'env>(
    __jni_env: &'env Env
) -> Result<Local<'env, DatagramSocket>, Local<'env, Throwable>>
[src]

pub fn new_SocketAddress<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env SocketAddress>>
) -> Result<Local<'env, DatagramSocket>, Local<'env, Throwable>>
[src]

DatagramSocket

Required features: "java-net-SocketAddress"

pub fn new_int<'env>(
    __jni_env: &'env Env,
    arg0: i32
) -> Result<Local<'env, DatagramSocket>, Local<'env, Throwable>>
[src]

pub fn new_int_InetAddress<'env>(
    __jni_env: &'env Env,
    arg0: i32,
    arg1: impl Into<Option<&'env InetAddress>>
) -> Result<Local<'env, DatagramSocket>, Local<'env, Throwable>>
[src]

DatagramSocket

Required features: "java-net-InetAddress"

pub fn bind<'env>(
    &'env self,
    arg0: impl Into<Option<&'env SocketAddress>>
) -> Result<(), Local<'env, Throwable>>
[src]

bind

Required features: "java-net-SocketAddress"

pub fn connect_InetAddress_int<'env>(
    &'env self,
    arg0: impl Into<Option<&'env InetAddress>>,
    arg1: i32
) -> Result<(), Local<'env, Throwable>>
[src]

connect

Required features: "java-net-InetAddress"

pub fn connect_SocketAddress<'env>(
    &'env self,
    arg0: impl Into<Option<&'env SocketAddress>>
) -> Result<(), Local<'env, Throwable>>
[src]

connect

Required features: "java-net-SocketAddress"

pub fn disconnect<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn isBound<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn isConnected<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn getInetAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, InetAddress>>, Local<'env, Throwable>>
[src]

getInetAddress

Required features: "java-net-InetAddress"

pub fn getPort<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn getRemoteSocketAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, SocketAddress>>, Local<'env, Throwable>>
[src]

getRemoteSocketAddress

Required features: "java-net-SocketAddress"

pub fn getLocalSocketAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, SocketAddress>>, Local<'env, Throwable>>
[src]

getLocalSocketAddress

Required features: "java-net-SocketAddress"

pub fn send<'env>(
    &'env self,
    arg0: impl Into<Option<&'env DatagramPacket>>
) -> Result<(), Local<'env, Throwable>>
[src]

send

Required features: "java-net-DatagramPacket"

pub fn receive<'env>(
    &'env self,
    arg0: impl Into<Option<&'env DatagramPacket>>
) -> Result<(), Local<'env, Throwable>>
[src]

receive

Required features: "java-net-DatagramPacket"

pub fn getLocalAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, InetAddress>>, Local<'env, Throwable>>
[src]

getLocalAddress

Required features: "java-net-InetAddress"

pub fn getLocalPort<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn setSoTimeout<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getSoTimeout<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn setSendBufferSize<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getSendBufferSize<'env>(
    &'env self
) -> Result<i32, Local<'env, Throwable>>
[src]

pub fn setReceiveBufferSize<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getReceiveBufferSize<'env>(
    &'env self
) -> Result<i32, Local<'env, Throwable>>
[src]

pub fn setReuseAddress<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getReuseAddress<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn setBroadcast<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getBroadcast<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn setTrafficClass<'env>(
    &'env self,
    arg0: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getTrafficClass<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn close<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn isClosed<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

pub fn getChannel<'env>(
    &'env self
) -> Result<Option<Local<'env, DatagramChannel>>, Local<'env, Throwable>>
[src]

getChannel

Required features: "java-nio-channels-DatagramChannel"

pub fn setDatagramSocketImplFactory<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env DatagramSocketImplFactory>>
) -> Result<(), Local<'env, Throwable>>
[src]

setDatagramSocketImplFactory

Required features: "java-net-DatagramSocketImplFactory"

Methods from Deref<Target = Object>

pub fn getClass<'env>(
    &'env self
) -> Result<Option<Local<'env, Class>>, Local<'env, Throwable>>
[src]

getClass

Required features: "java-lang-Class"

pub fn hashCode<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn equals<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Object>>
) -> Result<bool, Local<'env, Throwable>>
[src]

equals

Required features: "java-lang-Object"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn notify<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn notifyAll<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn wait_long<'env>(
    &'env self,
    arg0: i64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait_long_int<'env>(
    &'env self,
    arg0: i64,
    arg1: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

Trait Implementations

impl AsJValue for DatagramSocket

impl AsRef<Closeable> for DatagramSocket

impl AsValidJObjectAndEnv for DatagramSocket

impl Deref for DatagramSocket

type Target = Object

The resulting type after dereferencing.

impl JniType for DatagramSocket

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.