Home
last modified time | relevance | path

Searched refs:TryInto (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/
H A Ddata_value.rs287 TryInto(Type, Type), enumerator
298 DataValueCastFailure::TryInto(from, to) => { in fmt()
317 impl TryInto<$rust_ty> for DataValue {
323 Err(DataValueCastFailure::TryInto(
414 TryInto::<[u8; 16]>::try_into(DataValue::V128([0; 16])).unwrap(), in type_conversions()
418 TryInto::<i32>::try_into(DataValue::V128([0; 16])).unwrap_err(), in type_conversions()
419 DataValueCastFailure::TryInto(types::I8X16, types::I32) in type_conversions()
H A Disle_prelude.rs216 use core::convert::TryInto;
/wasmtime-44.0.1/crates/wasi-nn/examples/classification-example/src/
H A Dmain.rs1 use std::convert::TryInto;
/wasmtime-44.0.1/crates/wasi-http/src/p2/
H A Dtypes.rs75 impl TryInto<http::Method> for types::Method {
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/concurrent/
H A Dfutures_and_streams.rs2151 type TryInto = Box<dyn Fn(TypeId) -> Option<Box<dyn Any>> + Send + Sync>; typedef
2171 try_into: TryInto,
3115 try_into: TryInto, in produce() argument