pub struct RelationMessage<'a> {
pub relation_id: u32,
pub namespace: Cow<'a, str>,
pub name: Cow<'a, str>,
pub replica_identity: u8,
pub columns: Vec<RelationColumn<'a>>,
}Fields§
§relation_id: u32§namespace: Cow<'a, str>§name: Cow<'a, str>§replica_identity: u8§columns: Vec<RelationColumn<'a>>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RelationMessage<'a>
impl<'a> RefUnwindSafe for RelationMessage<'a>
impl<'a> Send for RelationMessage<'a>
impl<'a> Sync for RelationMessage<'a>
impl<'a> Unpin for RelationMessage<'a>
impl<'a> UnsafeUnpin for RelationMessage<'a>
impl<'a> UnwindSafe for RelationMessage<'a>
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