pub struct CreateDavAccountRequest {
pub uri: String,
pub name: String,
pub readonly: Option<bool>,
pub proxy: Option<bool>,
pub disable_sys_files: Option<bool>,
}Expand description
Request to create or update a WebDAV account
Fields§
§uri: StringRoot folder path (will be converted to URI format internally)
Can be:
- Absolute path: “/folder”
- Relative path: “folder”
- Already formatted URI: “cloudreve://my/folder”
name: StringAccount annotation (1-255 characters)
readonly: Option<bool>§proxy: Option<bool>§disable_sys_files: Option<bool>Trait Implementations§
Source§impl Debug for CreateDavAccountRequest
impl Debug for CreateDavAccountRequest
Auto Trait Implementations§
impl Freeze for CreateDavAccountRequest
impl RefUnwindSafe for CreateDavAccountRequest
impl Send for CreateDavAccountRequest
impl Sync for CreateDavAccountRequest
impl Unpin for CreateDavAccountRequest
impl UnwindSafe for CreateDavAccountRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more