[]Struct jni_android_sys::android::net::LocalSocket

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

public class LocalSocket

Required feature: "android-net-LocalSocket"

Methods

impl LocalSocket

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

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

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

toString

Required features: "java-lang-String"

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

connect

Required features: "android-net-LocalSocketAddress"

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

bind

Required features: "android-net-LocalSocketAddress"

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

getLocalSocketAddress

Required features: "android-net-LocalSocketAddress"

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

getInputStream

Required features: "java-io-InputStream"

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

getOutputStream

Required features: "java-io-OutputStream"

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

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

pub fn shutdownOutput<'env>(&'env self) -> Result<(), 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 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 getRemoteSocketAddress<'env>(
    &'env self
) -> Result<Option<Local<'env, LocalSocketAddress>>, Local<'env, Throwable>>
[src]

getRemoteSocketAddress

Required features: "android-net-LocalSocketAddress"

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

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

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

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

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

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

connect

Required features: "android-net-LocalSocketAddress"

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

setFileDescriptorsForSend

Required features: "java-io-FileDescriptor"

pub fn getAncillaryFileDescriptors<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<FileDescriptor, Throwable>>>, Local<'env, Throwable>>
[src]

getAncillaryFileDescriptors

Required features: "java-io-FileDescriptor"

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

getPeerCredentials

Required features: "android-net-Credentials"

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

getFileDescriptor

Required features: "java-io-FileDescriptor"

pub const SOCKET_DGRAM: i32[src]

public static final SOCKET_DGRAM

pub const SOCKET_SEQPACKET: i32[src]

public static final SOCKET_SEQPACKET

pub const SOCKET_STREAM: i32[src]

public static final SOCKET_STREAM

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 LocalSocket

impl AsRef<Closeable> for LocalSocket

impl AsValidJObjectAndEnv for LocalSocket

impl Deref for LocalSocket

type Target = Object

The resulting type after dereferencing.

impl JniType for LocalSocket

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.