pub struct TableMapEvent {
pub table_id: u64,
pub database_name: String,
pub table_name: String,
pub column_types: Vec<u8>,
pub column_metas: Vec<u16>,
pub null_bits: Vec<bool>,
}
Fields§
§table_id: u64
§database_name: String
§table_name: String
§column_types: Vec<u8>
§column_metas: Vec<u16>
§null_bits: Vec<bool>
Implementations§
source§impl TableMapEvent
impl TableMapEvent
Trait Implementations§
source§impl Clone for TableMapEvent
impl Clone for TableMapEvent
source§fn clone(&self) -> TableMapEvent
fn clone(&self) -> TableMapEvent
Returns a copy 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 moresource§impl Debug for TableMapEvent
impl Debug for TableMapEvent
source§impl<'de> Deserialize<'de> for TableMapEvent
impl<'de> Deserialize<'de> for TableMapEvent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for TableMapEvent
impl Send for TableMapEvent
impl Sync for TableMapEvent
impl Unpin for TableMapEvent
impl UnwindSafe for TableMapEvent
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