pub struct DavItem {
pub is_dir: bool,
pub url: String,
pub name: String,
pub last_modified: String,
pub size: u64,
pub content_type: String,
}Expand description
Represents an item within a WebDAV collection.
DavItem contains information about a file or directory in a WebDAV server,
Fields§
§is_dir: bool§url: String§name: StringThe display name of the item.
last_modified: StringThe last modified timestamp of the item.
size: u64The size of the item in bytes.
content_type: StringThe content type (MIME type) of the item.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DavItem
impl RefUnwindSafe for DavItem
impl Send for DavItem
impl Sync for DavItem
impl Unpin for DavItem
impl UnwindSafe for DavItem
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