MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / into_raw

Method into_raw

wasm-pdk/src/lib.rs:174–178  ·  view source on GitHub ↗

Surrender the handle without running `Drop` (used when writing to `*out`).

(self)

Source from the content-addressed store, hash-verified

172 pub fn from_raw(raw: u32) -> Self { Self { raw, owned: true } }
173 /// Surrender the handle without running `Drop` (used when writing to `*out`).
174 pub fn into_raw(self) -> u32 {
175 let r = self.raw;
176 core::mem::forget(self);
177 r
178 }
179 pub fn raw(&self) -> u32 { self.raw }
180}
181

Callers 2

getMethod · 0.80
r#matchFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected