MCPcopy Create free account
hub / github.com/dlunch/wie / JavaValueExt

Interface JavaValueExt

wie_ktf/src/runtime/java/jvm_support/value.rs:9–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7use super::{KtfJvmWord, array_class_instance::JavaArrayClassInstance, class_instance::JavaClassInstance};
8
9pub trait JavaValueExt {
10 fn from_raw(raw: KtfJvmWord, r#type: &JavaType, core: &ArmCore) -> JavaValue;
11 fn from_raw64(raw: KtfJvmWord, raw_high: KtfJvmWord, r#type: &JavaType) -> JavaValue;
12 fn as_raw(&self) -> KtfJvmWord;
13 fn as_raw64(&self) -> (KtfJvmWord, KtfJvmWord);
14}
15
16impl JavaValueExt for JavaValue {
17 fn from_raw(raw: KtfJvmWord, r#type: &JavaType, core: &ArmCore) -> JavaValue {

Callers

nothing calls this directly

Implementers 1

value.rswie_ktf/src/runtime/java/jvm_support/v

Calls

no outgoing calls

Tested by

no test coverage detected