John Schug

Results 4 comments of John Schug

Contexts cannot currently be cloned. This is a limitation of the underlying GPGme library. As a workaround you can create a new context manually and copy over the necessary attributes...

To implement a general clone method you would have to keep track of those changes manually, since the underlying API doesn't provide a way to retrieve that information. For a...

I don't think there is a way to do this currently.

This is caused by passing in a mutable reference to plain. The mutable reference is turned into a write-only `Data` wrapper by [IntoData](https://github.com/johnschug/rust-gpgme/blob/0e3d21a2f23bb2f49d5beeea463ff03962631dc6/src/data.rs#L552) while gpgme expects a readable object. This...