recursor: rename Recursor::new() to builder()

This commit is contained in:
Dirkjan Ochtman 2024-05-12 13:55:33 +02:00
parent 5db65e336b
commit 872ada02ef
3 changed files with 4 additions and 5 deletions

View File

@ -108,9 +108,8 @@ pub struct Recursor {
} }
impl Recursor { impl Recursor {
/// Short-hand for `RecursorBuilder::default` /// Construct the new [`Recursor`] via the [`RecursorBuilder`]
#[allow(clippy::new_ret_no_self)] pub fn builder() -> RecursorBuilder {
pub fn new() -> RecursorBuilder {
RecursorBuilder::default() RecursorBuilder::default()
} }

View File

@ -73,7 +73,7 @@ impl RecursiveAuthority {
}); });
} }
let mut recursor = Recursor::new(); let mut recursor = Recursor::builder();
recursor recursor
.ns_cache_size(config.ns_cache_size) .ns_cache_size(config.ns_cache_size)
.record_cache_size(config.record_cache_size); .record_cache_size(config.record_cache_size);

View File

@ -157,7 +157,7 @@ pub async fn main() -> Result<(), Box<dyn std::error::Error>> {
let name = opts.domainname; let name = opts.domainname;
let ty = opts.ty; let ty = opts.ty;
let recursor = Recursor::new().build(roots)?; let recursor = Recursor::builder().build(roots)?;
// execute query // execute query
println!( println!(