pub struct IndividualTableRow {
pub id: IndividualId,
pub flags: IndividualFlags,
pub location: Option<Vec<Location>>,
pub parents: Option<Vec<IndividualId>>,
pub metadata: Option<Vec<u8>>,
}Expand description
Row of a IndividualTable
Fields§
§id: IndividualId§flags: IndividualFlags§location: Option<Vec<Location>>§parents: Option<Vec<IndividualId>>§metadata: Option<Vec<u8>>Trait Implementations§
Source§impl Debug for IndividualTableRow
impl Debug for IndividualTableRow
Source§impl PartialEq for IndividualTableRow
impl PartialEq for IndividualTableRow
Auto Trait Implementations§
impl Freeze for IndividualTableRow
impl RefUnwindSafe for IndividualTableRow
impl Send for IndividualTableRow
impl Sync for IndividualTableRow
impl Unpin for IndividualTableRow
impl UnwindSafe for IndividualTableRow
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