pub struct EventRecordRow {
pub row_id: i64,
/* private fields */
}Expand description
Commit record row.
Fields§
§row_id: i64Row identifier.
Implementations§
Source§impl EventRecordRow
impl EventRecordRow
Sourcepub fn new(record: &EventRecord) -> Result<Self, Error>
pub fn new(record: &EventRecord) -> Result<Self, Error>
Create a new event record row for insertion.
Trait Implementations§
Source§impl Debug for EventRecordRow
impl Debug for EventRecordRow
Source§impl Default for EventRecordRow
impl Default for EventRecordRow
Source§fn default() -> EventRecordRow
fn default() -> EventRecordRow
Returns the “default value” for a type. Read more
Source§impl<'a> TryFrom<&Row<'a>> for EventRecordRow
impl<'a> TryFrom<&Row<'a>> for EventRecordRow
Source§impl TryFrom<EventRecordRow> for EventRecord
impl TryFrom<EventRecordRow> for EventRecord
Auto Trait Implementations§
impl Freeze for EventRecordRow
impl RefUnwindSafe for EventRecordRow
impl Send for EventRecordRow
impl Sync for EventRecordRow
impl Unpin for EventRecordRow
impl UnwindSafe for EventRecordRow
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