mirror of
https://github.com/pcvolkmer/osc-variant.git
synced 2025-07-03 01:02:55 +00:00
Issue #8: Add initial sorting based on form dependencies
This commit is contained in:
@ -98,6 +98,14 @@ pub trait Requires
|
||||
where
|
||||
Self: Listable,
|
||||
{
|
||||
fn requires_form_reference(&self, _: &str) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
fn requires_subform(&self, _: &str) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
fn get_required_entries<'a>(&'a self, all: &'a OnkostarEditor) -> Vec<Requirement>;
|
||||
|
||||
fn to_requirement_string<'a>(&'a self, all: &'a OnkostarEditor) -> String {
|
||||
|
Reference in New Issue
Block a user