pub struct NodeTableRow {
pub id: NodeId,
pub time: Time,
pub flags: NodeFlags,
pub population: PopulationId,
pub individual: IndividualId,
pub metadata: Option<Vec<u8>>,
}
Expand description
Row of a NodeTable
Fields§
§id: NodeId
§time: Time
§flags: NodeFlags
§population: PopulationId
§individual: IndividualId
§metadata: Option<Vec<u8>>
Trait Implementations§
Source§impl Debug for NodeTableRow
impl Debug for NodeTableRow
Source§impl PartialEq for NodeTableRow
impl PartialEq for NodeTableRow
Auto Trait Implementations§
impl Freeze for NodeTableRow
impl RefUnwindSafe for NodeTableRow
impl Send for NodeTableRow
impl Sync for NodeTableRow
impl Unpin for NodeTableRow
impl UnwindSafe for NodeTableRow
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