Struct rasn_compiler::intermediate::types::CharacterString
source · pub struct CharacterString {
pub constraints: Vec<Constraint>,
pub ty: CharacterStringType,
}
Expand description
Representation of an ASN1 Character String type data element with corresponding constraints. ASN1 Character String types include IA5String, UTF8String, VideotexString. As defined in Rec. ITU-T X.680 (02/2021) §39-§44
Fields§
§constraints: Vec<Constraint>
§ty: CharacterStringType
Trait Implementations§
source§impl Clone for CharacterString
impl Clone for CharacterString
source§fn clone(&self) -> CharacterString
fn clone(&self) -> CharacterString
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 Constrainable for CharacterString
impl Constrainable for CharacterString
source§fn constraints(&self) -> &Vec<Constraint>
fn constraints(&self) -> &Vec<Constraint>
returns a reference to the type’s constraints
source§fn constraints_mut(&mut self) -> &mut Vec<Constraint>
fn constraints_mut(&mut self) -> &mut Vec<Constraint>
returns a mutable reference to the type’s constraints
source§impl Debug for CharacterString
impl Debug for CharacterString
source§impl From<(&str, Option<Vec<Constraint>>)> for CharacterString
impl From<(&str, Option<Vec<Constraint>>)> for CharacterString
source§impl PartialEq for CharacterString
impl PartialEq for CharacterString
source§fn eq(&self, other: &CharacterString) -> bool
fn eq(&self, other: &CharacterString) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CharacterString
Auto Trait Implementations§
impl RefUnwindSafe for CharacterString
impl Send for CharacterString
impl Sync for CharacterString
impl Unpin for CharacterString
impl UnwindSafe for CharacterString
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