pub struct RelationEvent {
pub relation_id: u32,
pub schema: String,
pub table: String,
pub columns: Vec<ColumnSchema>,
}Fields§
§relation_id: u32§schema: String§table: String§columns: Vec<ColumnSchema>Trait Implementations§
Source§impl Clone for RelationEvent
impl Clone for RelationEvent
Source§fn clone(&self) -> RelationEvent
fn clone(&self) -> RelationEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RelationEvent
impl Debug for RelationEvent
impl Eq for RelationEvent
Source§impl PartialEq for RelationEvent
impl PartialEq for RelationEvent
Source§fn eq(&self, other: &RelationEvent) -> bool
fn eq(&self, other: &RelationEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RelationEvent
Auto Trait Implementations§
impl Freeze for RelationEvent
impl RefUnwindSafe for RelationEvent
impl Send for RelationEvent
impl Sync for RelationEvent
impl Unpin for RelationEvent
impl UnsafeUnpin for RelationEvent
impl UnwindSafe for RelationEvent
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