pub enum PlaceValidity {
ValidOnly,
MaybeInvalid,
}
Expand description
Track whether a given place (aka column) is known to contain a valid value or not.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PlaceValidity
impl Clone for PlaceValidity
Source§fn clone(&self) -> PlaceValidity
fn clone(&self) -> PlaceValidity
Returns a copy of the value. Read more
1.0.0 · 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 PlaceValidity
impl Debug for PlaceValidity
Source§impl Display for PlaceValidity
impl Display for PlaceValidity
Source§impl PartialEq for PlaceValidity
impl PartialEq for PlaceValidity
impl Copy for PlaceValidity
impl Eq for PlaceValidity
impl StructuralPartialEq for PlaceValidity
Auto Trait Implementations§
impl Freeze for PlaceValidity
impl RefUnwindSafe for PlaceValidity
impl Send for PlaceValidity
impl Sync for PlaceValidity
impl Unpin for PlaceValidity
impl UnwindSafe for PlaceValidity
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