Happ development process question

Greetings forum, I am quite new here. I spent a week learning the ins and outs of The Rust Programming Language; without much hands on coding, and then subsequently began learning the hdk shortly after. It was comforting to see necessary abstractions and built in functionality!

My question is with regards to how I should approach developing the zomes of my DNA.
Without divulging into too much depth, I am curious if the logic of my zomes has to be built solely on the hdk or if the bare bones of rust can be integrated as part of the contents of an entry.

If this question does not make sense. Feel free to ignore it. I believe I know the answer, but the question is to difficult to articulate lacking certain technical knowledge. Thank you for you time.
-Relic

1 Like

in terms of data structures, anything that can be serialized into bytes from Rust can be integrated as part of the contents of an entry. That is how Holochain stores the data on the source chain, as serialized/encoded bytes.

Hope that helps!

1 Like