Enum postgres_replication::protocol::TupleData
source · pub enum TupleData {
Null,
UnchangedToast,
Text(Bytes),
}
Expand description
The data of an individual column as it appears in the replication stream
Variants§
Null
Represents a NULL value
UnchangedToast
Represents an unchanged TOASTed value (the actual value is not sent).
Text(Bytes)
Column data as text formatted value.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for TupleData
impl RefUnwindSafe for TupleData
impl Send for TupleData
impl Sync for TupleData
impl Unpin for TupleData
impl UnwindSafe for TupleData
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