pub struct TextualRepresentation {
pub rep_identification: Option<Identification>,
pub language: String,
pub text: String,
}Expand description
KerML TextualRepresentation: ( ‘rep’ Identification )? ‘language’ STRING_VALUE body.
Fields§
§rep_identification: Option<Identification>§language: String§text: StringTrait Implementations§
Source§impl Clone for TextualRepresentation
impl Clone for TextualRepresentation
Source§fn clone(&self) -> TextualRepresentation
fn clone(&self) -> TextualRepresentation
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 TextualRepresentation
impl Debug for TextualRepresentation
impl Eq for TextualRepresentation
Source§impl PartialEq for TextualRepresentation
impl PartialEq for TextualRepresentation
Source§fn eq(&self, other: &TextualRepresentation) -> bool
fn eq(&self, other: &TextualRepresentation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextualRepresentation
Auto Trait Implementations§
impl Freeze for TextualRepresentation
impl RefUnwindSafe for TextualRepresentation
impl Send for TextualRepresentation
impl Sync for TextualRepresentation
impl Unpin for TextualRepresentation
impl UnsafeUnpin for TextualRepresentation
impl UnwindSafe for TextualRepresentation
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