[]Struct jni_android_sys::org::w3c::dom::ls::LSParser

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

public interface LSParser

Required feature: "org-w3c-dom-ls-LSParser"

Methods

impl LSParser

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

getDomConfig

Required features: "org-w3c-dom-DOMConfiguration"

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

getFilter

Required features: "org-w3c-dom-ls-LSParserFilter"

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

setFilter

Required features: "org-w3c-dom-ls-LSParserFilter"

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

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

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

parse

Required features: "org-w3c-dom-Document", "org-w3c-dom-ls-LSInput"

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

parseURI

Required features: "java-lang-String", "org-w3c-dom-Document"

pub fn parseWithContext<'env>(
    &'env self,
    arg0: impl Into<Option<&'env LSInput>>,
    arg1: impl Into<Option<&'env Node>>,
    arg2: i16
) -> Result<Option<Local<'env, Node>>, Local<'env, Throwable>>
[src]

parseWithContext

Required features: "org-w3c-dom-Node", "org-w3c-dom-ls-LSInput"

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

pub const ACTION_APPEND_AS_CHILDREN: i16[src]

public static final ACTION_APPEND_AS_CHILDREN

pub const ACTION_INSERT_AFTER: i16[src]

public static final ACTION_INSERT_AFTER

pub const ACTION_INSERT_BEFORE: i16[src]

public static final ACTION_INSERT_BEFORE

pub const ACTION_REPLACE: i16[src]

public static final ACTION_REPLACE

pub const ACTION_REPLACE_CHILDREN: i16[src]

public static final ACTION_REPLACE_CHILDREN

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 LSParser

impl AsValidJObjectAndEnv for LSParser

impl Deref for LSParser

type Target = Object

The resulting type after dereferencing.

impl JniType for LSParser

Auto Trait Implementations

impl RefUnwindSafe for LSParser

impl !Send for LSParser

impl !Sync for LSParser

impl Unpin for LSParser

impl UnwindSafe for LSParser

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.