[]Struct jni_android_sys::java::util::logging::FileHandler

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

public class FileHandler

Required feature: "java-util-logging-FileHandler"

Methods

impl FileHandler

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

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

FileHandler

Required features: "java-lang-String"

pub fn new_String_boolean<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env String>>,
    arg1: bool
) -> Result<Local<'env, FileHandler>, Local<'env, Throwable>>
[src]

FileHandler

Required features: "java-lang-String"

pub fn new_String_int_int<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env String>>,
    arg1: i32,
    arg2: i32
) -> Result<Local<'env, FileHandler>, Local<'env, Throwable>>
[src]

FileHandler

Required features: "java-lang-String"

pub fn new_String_int_int_boolean<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env String>>,
    arg1: i32,
    arg2: i32,
    arg3: bool
) -> Result<Local<'env, FileHandler>, Local<'env, Throwable>>
[src]

FileHandler

Required features: "java-lang-String"

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

publish

Required features: "java-util-logging-LogRecord"

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

Methods from Deref<Target = StreamHandler>

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

setEncoding

Required features: "java-lang-String"

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

publish

Required features: "java-util-logging-LogRecord"

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

isLoggable

Required features: "java-util-logging-LogRecord"

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

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

Trait Implementations

impl AsJValue for FileHandler

impl AsValidJObjectAndEnv for FileHandler

impl Deref for FileHandler

type Target = StreamHandler

The resulting type after dereferencing.

impl JniType for FileHandler

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.