pub enum Resolve {
Now,
Lazy,
}Variants§
Now
Resolve all undefined symbols immediately.
Lazy
Perform lazy binding (i.e. symbols will be resolved when they are first used).
Trait Implementations§
impl Copy for Resolve
impl StructuralPartialEq for Resolve
Auto Trait Implementations§
impl Freeze for Resolve
impl RefUnwindSafe for Resolve
impl Send for Resolve
impl Sync for Resolve
impl Unpin for Resolve
impl UnsafeUnpin for Resolve
impl UnwindSafe for Resolve
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