pub struct DomainCheck {
pub name: String,
pub expr: String,
}Expand description
v7.39 (round 260) — one named CHECK on a domain. PG auto-names an
unnamed one <domain>_check, then _check1, _check2, … (probed).
Fields§
§name: String§expr: StringThe predicate source, referencing the pseudo-column VALUE.
Trait Implementations§
Source§impl Clone for DomainCheck
impl Clone for DomainCheck
Source§fn clone(&self) -> DomainCheck
fn clone(&self) -> DomainCheck
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 DomainCheck
impl Debug for DomainCheck
impl Eq for DomainCheck
Source§impl PartialEq for DomainCheck
impl PartialEq for DomainCheck
impl StructuralPartialEq for DomainCheck
Auto Trait Implementations§
impl Freeze for DomainCheck
impl RefUnwindSafe for DomainCheck
impl Send for DomainCheck
impl Sync for DomainCheck
impl Unpin for DomainCheck
impl UnsafeUnpin for DomainCheck
impl UnwindSafe for DomainCheck
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