Struct rasn_compiler::intermediate::constraints::TableConstraint
source · pub struct TableConstraint {
pub object_set: ObjectSet,
pub linked_fields: Vec<RelationalConstraint>,
}
Expand description
Representation of a table constraint used for subtyping in ASN1 specifications See: ITU-T X.682 (02/2021) 10
Fields§
§object_set: ObjectSet
§linked_fields: Vec<RelationalConstraint>
Trait Implementations§
source§impl Clone for TableConstraint
impl Clone for TableConstraint
source§fn clone(&self) -> TableConstraint
fn clone(&self) -> TableConstraint
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 TableConstraint
impl Debug for TableConstraint
source§impl From<(ObjectSet, Option<Vec<RelationalConstraint>>)> for TableConstraint
impl From<(ObjectSet, Option<Vec<RelationalConstraint>>)> for TableConstraint
source§impl PartialEq for TableConstraint
impl PartialEq for TableConstraint
source§fn eq(&self, other: &TableConstraint) -> bool
fn eq(&self, other: &TableConstraint) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TableConstraint
Auto Trait Implementations§
impl RefUnwindSafe for TableConstraint
impl Send for TableConstraint
impl Sync for TableConstraint
impl Unpin for TableConstraint
impl UnwindSafe for TableConstraint
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