pub struct RelationshipData {
pub id: Uuid,
pub source_table_id: Uuid,
pub target_table_id: Uuid,
pub yaml_value: Value,
}Expand description
Relationship data to save
Fields§
§id: Uuid§source_table_id: Uuid§target_table_id: Uuid§yaml_value: ValueTrait Implementations§
Source§impl Clone for RelationshipData
impl Clone for RelationshipData
Source§fn clone(&self) -> RelationshipData
fn clone(&self) -> RelationshipData
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 moreAuto Trait Implementations§
impl Freeze for RelationshipData
impl RefUnwindSafe for RelationshipData
impl Send for RelationshipData
impl Sync for RelationshipData
impl Unpin for RelationshipData
impl UnwindSafe for RelationshipData
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