pub struct ExternalRelRef {
pub original_target_uuid: Uuid,
pub original_target_spec_id: Option<String>,
pub rel_type: RelationshipType,
}Expand description
Reference to a relationship target outside the exported tree
Fields§
§original_target_uuid: UuidOriginal UUID of the target
original_target_spec_id: Option<String>Original SPEC-ID of the target (if available)
rel_type: RelationshipTypeRelationship type
Trait Implementations§
Source§impl Clone for ExternalRelRef
impl Clone for ExternalRelRef
Source§fn clone(&self) -> ExternalRelRef
fn clone(&self) -> ExternalRelRef
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 ExternalRelRef
impl Debug for ExternalRelRef
Source§impl<'de> Deserialize<'de> for ExternalRelRef
impl<'de> Deserialize<'de> for ExternalRelRef
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
Auto Trait Implementations§
impl Freeze for ExternalRelRef
impl RefUnwindSafe for ExternalRelRef
impl Send for ExternalRelRef
impl Sync for ExternalRelRef
impl Unpin for ExternalRelRef
impl UnsafeUnpin for ExternalRelRef
impl UnwindSafe for ExternalRelRef
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