-
I see that Decoder/Encoder are not implemented for Env. I am not concerned with actually encoding/decoding the Env, but simple storing a reference to it in a struct so that I can implement functions within that struct that can take advantage of the env's send function to communicate with the beam. Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
filmor
Jan 1, 2024
Replies: 1 comment 5 replies
-
You can't use an |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
aram0112
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can't use an
Env
directly (without being constrained to the same "call"), but you can use anOwnedEnv
instead.