From 4003864d2876ab0c026fddaa34c17abf33bd2a46 Mon Sep 17 00:00:00 2001 From: Warren Date: Mon, 22 Jun 2026 07:26:54 +0800 Subject: [PATCH] Fix WebDAV: add Clone to WebdavCredentials --- markbase-core/src/webdav.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/markbase-core/src/webdav.rs b/markbase-core/src/webdav.rs index 19744b7..defd712 100644 --- a/markbase-core/src/webdav.rs +++ b/markbase-core/src/webdav.rs @@ -37,6 +37,7 @@ fn map_vfs_error(e: VfsError) -> FsError { /// Expected credentials for WebDAV Basic Auth validation #[derive(Clone)] +#[derive(Clone)] pub struct WebdavCredentials { pub username: String, pub password: Option,