pub struct ResolverOptions {
pub other: Vec<String>,
pub limit: Option<usize>,
}
Expand description
Fields§
§other: Vec<String>
Extended nonstandard resolver options.
limit: Option<usize>
The maximum number of outputs.
Implementations§
Source§impl ResolverOptions
impl ResolverOptions
Sourcepub fn builder() -> ResolverOptionsBuilder
pub fn builder() -> ResolverOptionsBuilder
Create an instance of ResolverOptions
using the builder syntax
Trait Implementations§
Source§impl Clone for ResolverOptions
impl Clone for ResolverOptions
Source§fn clone(&self) -> ResolverOptions
fn clone(&self) -> ResolverOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ResolverOptions
impl Debug for ResolverOptions
Source§impl Default for ResolverOptions
impl Default for ResolverOptions
Source§fn default() -> ResolverOptions
fn default() -> ResolverOptions
Returns the “default value” for a type. Read more
Source§impl Hash for ResolverOptions
impl Hash for ResolverOptions
Source§impl Ord for ResolverOptions
impl Ord for ResolverOptions
Source§fn cmp(&self, other: &ResolverOptions) -> Ordering
fn cmp(&self, other: &ResolverOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResolverOptions
impl PartialEq for ResolverOptions
Source§impl PartialOrd for ResolverOptions
impl PartialOrd for ResolverOptions
impl Eq for ResolverOptions
impl StructuralPartialEq for ResolverOptions
Auto Trait Implementations§
impl Freeze for ResolverOptions
impl RefUnwindSafe for ResolverOptions
impl Send for ResolverOptions
impl Sync for ResolverOptions
impl Unpin for ResolverOptions
impl UnwindSafe for ResolverOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more