pub struct ForeignTableRow {
pub relation: RelationIdentity,
pub server_name: String,
pub columns_json: String,
pub options_json: String,
}Expand description
One row from the foreign-table registry.
Fields§
§relation: RelationIdentity§server_name: String§columns_json: String§options_json: StringTrait Implementations§
Source§impl Clone for ForeignTableRow
impl Clone for ForeignTableRow
Source§fn clone(&self) -> ForeignTableRow
fn clone(&self) -> ForeignTableRow
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 moreAuto Trait Implementations§
impl Freeze for ForeignTableRow
impl RefUnwindSafe for ForeignTableRow
impl Send for ForeignTableRow
impl Sync for ForeignTableRow
impl Unpin for ForeignTableRow
impl UnsafeUnpin for ForeignTableRow
impl UnwindSafe for ForeignTableRow
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