Trait GetChildren

Source
pub trait GetChildren {
    // Required method
    fn get_children(&mut self, dir: &String, result: *mut Vec<String>) -> Status;
}

Required Methods§

Source

fn get_children(&mut self, dir: &String, result: *mut Vec<String>) -> Status

| Store in *result the names of the children of | the specified directory. | | The names are relative to “dir”. | | Original contents of *results are dropped.

Implementors§