pub(crate) trait FileSystemEntryMethods<D>where
D: DomTypes,{
// Required methods
fn IsFile(&self) -> bool;
fn IsDirectory(&self) -> bool;
fn Name(&self) -> USVString;
fn FullPath(&self) -> USVString;
fn Filesystem(&self) -> Root<Dom<<D as DomTypes>::FileSystem>>;
fn GetParent(
&self,
successCallback: Option<Rc<FileSystemEntryCallback<D>>>,
errorCallback: Option<Rc<ErrorCallback<D>>>,
);
}