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 {
/// Short-hand for `RecursorBuilder::default`
#[allow(clippy::new_ret_no_self)]
pub fn new() -> RecursorBuilder {
/// Construct the new [`Recursor`] via the [`RecursorBuilder`]
pub fn builder() -> RecursorBuilder {
RecursorBuilder::default()
}

View File

@ -73,7 +73,7 @@ impl RecursiveAuthority {
});
}
let mut recursor = Recursor::new();
let mut recursor = Recursor::builder();
recursor
.ns_cache_size(config.ns_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 ty = opts.ty;
let recursor = Recursor::new().build(roots)?;
let recursor = Recursor::builder().build(roots)?;
// execute query
println!(