pub struct LibraryConfig {
pub skip_failures: bool,
pub max_size: Option<usize>,
}Expand description
Configuration for library enumeration.
Fields§
§skip_failures: boolSkip molecules that fail transformation (vs collecting errors).
max_size: Option<usize>Maximum total library size to prevent runaway enumeration.
Trait Implementations§
Source§impl Clone for LibraryConfig
impl Clone for LibraryConfig
Source§fn clone(&self) -> LibraryConfig
fn clone(&self) -> LibraryConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LibraryConfig
impl Debug for LibraryConfig
Auto Trait Implementations§
impl Freeze for LibraryConfig
impl RefUnwindSafe for LibraryConfig
impl Send for LibraryConfig
impl Sync for LibraryConfig
impl Unpin for LibraryConfig
impl UnsafeUnpin for LibraryConfig
impl UnwindSafe for LibraryConfig
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