pub enum GeneralConstraint {
ComponentRelation {
object_set: String,
component_refs: Vec<String>,
},
UserDefined(String),
}Expand description
General constraints (X.680 Section 52)
Variants§
ComponentRelation
Component relation constraint (table constraint)
UserDefined(String)
User-defined constraint
Trait Implementations§
Source§impl Clone for GeneralConstraint
impl Clone for GeneralConstraint
Source§fn clone(&self) -> GeneralConstraint
fn clone(&self) -> GeneralConstraint
Returns a duplicate 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 GeneralConstraint
impl Debug for GeneralConstraint
Source§impl PartialEq for GeneralConstraint
impl PartialEq for GeneralConstraint
impl StructuralPartialEq for GeneralConstraint
Auto Trait Implementations§
impl Freeze for GeneralConstraint
impl RefUnwindSafe for GeneralConstraint
impl Send for GeneralConstraint
impl Sync for GeneralConstraint
impl Unpin for GeneralConstraint
impl UnsafeUnpin for GeneralConstraint
impl UnwindSafe for GeneralConstraint
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