Remove borrow in borrow
This commit is contained in:
parent
49edf93691
commit
2d9db49fef
11
Cargo.lock
generated
11
Cargo.lock
generated
@ -14,6 +14,16 @@ version = "1.0.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "console_error_panic_hook"
|
||||||
|
version = "0.1.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"wasm-bindgen",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "log"
|
name = "log"
|
||||||
version = "0.4.20"
|
version = "0.4.20"
|
||||||
@ -119,5 +129,6 @@ checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
|||||||
name = "wasm-terminal"
|
name = "wasm-terminal"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"console_error_panic_hook",
|
||||||
"wasm-bindgen",
|
"wasm-bindgen",
|
||||||
]
|
]
|
||||||
|
@ -11,4 +11,5 @@ repository = "https://git.c0ntroller.de/c0ntroller/wasm-terminal"
|
|||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
console_error_panic_hook = "0.1.7"
|
||||||
wasm-bindgen = "0.2.89"
|
wasm-bindgen = "0.2.89"
|
||||||
|
@ -182,27 +182,27 @@ impl Directory {
|
|||||||
}*/
|
}*/
|
||||||
|
|
||||||
pub fn remove_file(&self, name: String) -> Result<(), &'static str> {
|
pub fn remove_file(&self, name: String) -> Result<(), &'static str> {
|
||||||
let mut index = 0;
|
let index = self.files.borrow().iter().position(|file| file.borrow().get_name() == name);
|
||||||
for file in self.files.borrow().iter() {
|
|
||||||
if file.borrow().get_name() == name {
|
match index {
|
||||||
|
Some(index) => {
|
||||||
self.files.borrow_mut().remove(index);
|
self.files.borrow_mut().remove(index);
|
||||||
return Ok(());
|
Ok(())
|
||||||
|
},
|
||||||
|
None => Err("File not found"),
|
||||||
}
|
}
|
||||||
index += 1;
|
|
||||||
}
|
|
||||||
Err("File not found")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn remove_dir(&self, name: String) -> Result<(), &'static str> {
|
pub fn remove_dir(&self, name: String) -> Result<(), &'static str> {
|
||||||
let mut index = 0;
|
let index: Option<usize> = self.subdirs.borrow().iter().position(|dir: &Rc<RefCell<Directory>>| dir.borrow().get_name() == name);
|
||||||
for dir in self.subdirs.borrow().iter() {
|
|
||||||
if dir.borrow().get_name() == name {
|
match index {
|
||||||
|
Some(index) => {
|
||||||
self.subdirs.borrow_mut().remove(index);
|
self.subdirs.borrow_mut().remove(index);
|
||||||
return Ok(());
|
Ok(())
|
||||||
|
},
|
||||||
|
None => Err("Directory not found"),
|
||||||
}
|
}
|
||||||
index += 1;
|
|
||||||
}
|
|
||||||
Err("Directory not found")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn rename(&mut self, name: String) {
|
pub fn rename(&mut self, name: String) {
|
||||||
|
Loading…
Reference in New Issue
Block a user