pub struct TargetCompat {
pub target_type: String,
pub status: TargetStatus,
pub note: Option<String>,
}Expand description
One column’s compatibility result against a target.
Fields§
§target_type: StringTarget type name (e.g. “NUMERIC”, “BIGNUMERIC”, “TIMESTAMP”).
status: TargetStatus§note: Option<String>Optional note explaining a warning or failure.
Trait Implementations§
Source§impl Clone for TargetCompat
impl Clone for TargetCompat
Source§fn clone(&self) -> TargetCompat
fn clone(&self) -> TargetCompat
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 TargetCompat
impl Debug for TargetCompat
Auto Trait Implementations§
impl Freeze for TargetCompat
impl RefUnwindSafe for TargetCompat
impl Send for TargetCompat
impl Sync for TargetCompat
impl Unpin for TargetCompat
impl UnsafeUnpin for TargetCompat
impl UnwindSafe for TargetCompat
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