pub struct StreamRecord {
pub event_name: String,
pub keys_json: String,
pub new_image: Option<String>,
pub old_image: Option<String>,
pub sequence_number: String,
pub created_at: i64,
pub user_identity: Option<String>,
}Expand description
A stream record from the _stream_records table.
Fields§
§event_name: String§keys_json: String§new_image: Option<String>§old_image: Option<String>§sequence_number: String§created_at: i64§user_identity: Option<String>Trait Implementations§
Source§impl Clone for StreamRecord
impl Clone for StreamRecord
Source§fn clone(&self) -> StreamRecord
fn clone(&self) -> StreamRecord
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 StreamRecord
impl RefUnwindSafe for StreamRecord
impl Send for StreamRecord
impl Sync for StreamRecord
impl Unpin for StreamRecord
impl UnsafeUnpin for StreamRecord
impl UnwindSafe for StreamRecord
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