pub struct RestoreFileRequest<'a> {
pub uris: Vec<&'a str>,
}Expand description
Restore file request
Fields§
§uris: Vec<&'a str>List of file paths to restore (will be converted to URI format internally)
Each path can be:
- Absolute path: “/folder/file.txt”
- Relative path: “folder/file.txt”
- Already formatted URI: “cloudreve://my/folder/file.txt”
Trait Implementations§
Source§impl<'a> Debug for RestoreFileRequest<'a>
impl<'a> Debug for RestoreFileRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for RestoreFileRequest<'a>
impl<'a> RefUnwindSafe for RestoreFileRequest<'a>
impl<'a> Send for RestoreFileRequest<'a>
impl<'a> Sync for RestoreFileRequest<'a>
impl<'a> Unpin for RestoreFileRequest<'a>
impl<'a> UnwindSafe for RestoreFileRequest<'a>
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