[]Struct jni_android_sys::android::os::strictmode::Violation

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

public class Violation

Required feature: "android-os-strictmode-Violation"

Methods from Deref<Target = Throwable>

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

getMessage

Required features: "java-lang-String"

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

getLocalizedMessage

Required features: "java-lang-String"

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

getCause

Required features: "java-lang-Throwable"

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

initCause

Required features: "java-lang-Throwable"

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

toString

Required features: "java-lang-String"

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

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

printStackTrace

Required features: "java-io-PrintStream"

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

printStackTrace

Required features: "java-io-PrintWriter"

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

fillInStackTrace

Required features: "java-lang-Throwable"

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

getStackTrace

Required features: "java-lang-StackTraceElement"

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

setStackTrace

Required features: "java-lang-StackTraceElement"

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

addSuppressed

Required features: "java-lang-Throwable"

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

getSuppressed

Required features: "java-lang-Throwable"

Trait Implementations

impl AsJValue for Violation

impl AsValidJObjectAndEnv for Violation

impl Deref for Violation

type Target = Throwable

The resulting type after dereferencing.

impl JniType for Violation

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.