pub struct SysmlRelationship {
pub source: String,
pub target: String,
pub kind: String,
pub file_path: PathBuf,
pub span: Span,
}Fields§
§source: String§target: String§kind: String§file_path: PathBuf§span: SpanTrait Implementations§
Source§impl Clone for SysmlRelationship
impl Clone for SysmlRelationship
Source§fn clone(&self) -> SysmlRelationship
fn clone(&self) -> SysmlRelationship
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 SysmlRelationship
impl Debug for SysmlRelationship
Source§impl<'de> Deserialize<'de> for SysmlRelationship
impl<'de> Deserialize<'de> for SysmlRelationship
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Relationship for SysmlRelationship
impl Relationship for SysmlRelationship
Auto Trait Implementations§
impl Freeze for SysmlRelationship
impl RefUnwindSafe for SysmlRelationship
impl Send for SysmlRelationship
impl Sync for SysmlRelationship
impl Unpin for SysmlRelationship
impl UnsafeUnpin for SysmlRelationship
impl UnwindSafe for SysmlRelationship
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