crate::ix!();
pub struct CoinEligibilityFilter {
conf_mine: i32,
conf_theirs: i32,
max_ancestors: u64,
max_descendants: u64,
include_partial_groups: bool, }
impl CoinEligibilityFilter {
pub fn new_with_max_descendants(
conf_mine: i32,
conf_theirs: i32,
max_ancestors: u64) -> Self {
todo!();
}
pub fn new(
conf_mine: i32,
conf_theirs: i32,
max_ancestors: u64,
max_descendants: u64) -> Self {
todo!();
}
pub fn new_with_include_partial(
conf_mine: i32,
conf_theirs: i32,
max_ancestors: u64,
max_descendants: u64,
include_partial: bool) -> Self {
todo!();
}
}