pub struct Relation {
pub id: i64,
pub source_id: i64,
pub target_id: i64,
pub relation_type: RelationType,
pub created_at: String,
}Fields§
§id: i64§source_id: i64§target_id: i64§relation_type: RelationType§created_at: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Relation
impl RefUnwindSafe for Relation
impl Send for Relation
impl Sync for Relation
impl Unpin for Relation
impl UnsafeUnpin for Relation
impl UnwindSafe for Relation
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