matrix-sdk: Mention that the key import/export methods don't work on WASM.

master
Damir Jelić 2020-10-06 11:41:18 +02:00
parent 84039ad7aa
commit 45953a268c
1 changed files with 8 additions and 2 deletions

View File

@ -1799,7 +1799,10 @@ impl Client {
/// ```
#[cfg(feature = "encryption")]
#[cfg(not(target_arch = "wasm32"))]
#[cfg_attr(feature = "docs", doc(cfg(encryption)))]
#[cfg_attr(
feature = "docs",
doc(cfg(all(encryption, not(target_arch = "wasm32"))))
)]
pub async fn export_keys(
&self,
path: PathBuf,
@ -1849,7 +1852,10 @@ impl Client {
/// ```
#[cfg(feature = "encryption")]
#[cfg(not(target_arch = "wasm32"))]
#[cfg_attr(feature = "docs", doc(cfg(encryption)))]
#[cfg_attr(
feature = "docs",
doc(cfg(all(encryption, not(target_arch = "wasm32"))))
)]
pub async fn import_keys(&self, path: PathBuf, passphrase: &str) -> Result<()> {
let olm = self
.base_client