pub enum ConfigFnOrPartial {
Fn(Box<ConfigFn>),
Partial(PartialConfig),
}
Variants§
Fn(Box<ConfigFn>)
Partial(PartialConfig)
Auto Trait Implementations§
impl Freeze for ConfigFnOrPartial
impl !RefUnwindSafe for ConfigFnOrPartial
impl !Send for ConfigFnOrPartial
impl !Sync for ConfigFnOrPartial
impl Unpin for ConfigFnOrPartial
impl !UnwindSafe for ConfigFnOrPartial
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