MCPcopy Create free account
hub / github.com/GPPVM-Project/SkyLC / encode

Method encode

crates/skyl-data/src/bytecode.rs:38–42  ·  view source on GitHub ↗
(&self, encoder: &mut E)

Source from the content-addressed store, hash-verified

36
37impl Encode for VirtualFunction {
38 fn encode<E: Encoder>(&self, encoder: &mut E) -> Result<(), EncodeError> {
39 self.id.encode(encoder)?;
40 self.chunk.as_ref().encode(encoder)?;
41 Ok(())
42 }
43}
44
45impl Serialize for VirtualFunction {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected