pub struct Coercion {
pub column: String,
pub from: String,
pub to: String,
pub level: CoercionLevel,
}Expand description
A single type coercion applied during a run.
Fields§
§column: StringName of the column that was coerced.
from: StringSource type, rendered as a string.
to: StringTarget type, rendered as a string.
level: CoercionLevelSeverity of the coercion.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Coercion
impl RefUnwindSafe for Coercion
impl Send for Coercion
impl Sync for Coercion
impl Unpin for Coercion
impl UnsafeUnpin for Coercion
impl UnwindSafe for Coercion
Blanket Implementations§
impl<T> Allocation for T
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