kentonv changed the topic of #sandstorm to: Welcome to #sandstorm: home of all things sandstorm.io. Say hi! | Have a question but no one is here? Try asking in the discussion group: https://groups.google.com/group/sandstorm-dev | Public logs at https://botbot.me/freenode/sandstorm/
_whitelogger has joined #sandstorm
_whitelogger has joined #sandstorm
_whitelogger has joined #sandstorm
kbuzz has quit [Ping timeout: 268 seconds]
_whitelogger has joined #sandstorm
ripdog has quit [Ping timeout: 240 seconds]
TC01 has quit [Quit: No Ping reply in 180 seconds.]
TC01 has joined #sandstorm
Zarutian has quit [Read error: Connection reset by peer]
Zarutian_2 has joined #sandstorm
Zarutian_2 has quit [Ping timeout: 240 seconds]
Zarutian has joined #sandstorm
ripdog has joined #sandstorm
kbuzz has joined #sandstorm
kbuzz has quit [Quit: Konversation terminated!]
Zarutian has quit [Read error: Connection reset by peer]
Zarutian_2 has joined #sandstorm
Zarutian_2 is now known as Zarutian
pie_ has joined #sandstorm
pie_ has quit [Remote host closed the connection]
pie_ has joined #sandstorm
digitalcircuit has quit [Quit: Signing off from Quassel - see ya!]
digitalcircuit has joined #sandstorm
pie_ has quit [Remote host closed the connection]
pie__ has joined #sandstorm
pie__ has quit [Excess Flood]
pie__ has joined #sandstorm
kaekae has joined #sandstorm
<kaekae> Hi, I have a question about capnproto-rust. I've been storing capnp data in LMDB and now I'm trying to implement a capnp-rpc-rust service where I'm sending some of the data I have stored in the DB. I would like to just copy some of the structs from the DB over to the Results of the RPC service, but I can't seem to figure out how to do that.
<kaekae> The DB struct and the RPC result struct is not the same, so they wouldn't be completely compatible in terms of pointers as I understand it. Pointers are relative to the segment start IIRC. But I'd like some form of copy_from function for a generated struct_name::Builder, does that exist?
<kaekae> I mean, the struct I'm trying to copy between the two are the same, but the messages are not identical.