pub struct RelationalConstraint {
pub field_name: String,
pub level: usize,
}Expand description
Representation of a table’s relational constraint See: ITU-T X.682 (02/2021) 10.7
Fields§
§field_name: String§level: usizeThe level is null if the field is in the outermost object set of the declaration. The level is 1-n counting from the innermost object set of the declaration
Trait Implementations§
source§impl Clone for RelationalConstraint
impl Clone for RelationalConstraint
source§fn clone(&self) -> RelationalConstraint
fn clone(&self) -> RelationalConstraint
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 RelationalConstraint
impl Debug for RelationalConstraint
source§impl PartialEq for RelationalConstraint
impl PartialEq for RelationalConstraint
source§fn eq(&self, other: &RelationalConstraint) -> bool
fn eq(&self, other: &RelationalConstraint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RelationalConstraint
Auto Trait Implementations§
impl RefUnwindSafe for RelationalConstraint
impl Send for RelationalConstraint
impl Sync for RelationalConstraint
impl Unpin for RelationalConstraint
impl UnwindSafe for RelationalConstraint
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