pub struct SchemaSummary {
pub name: String,
pub owner: String,
pub is_system: bool,
}Fields§
§name: String§owner: String§is_system: boolTrue for pg_catalog, information_schema, pg_toast, etc.
Trait Implementations§
Source§impl Clone for SchemaSummary
impl Clone for SchemaSummary
Source§fn clone(&self) -> SchemaSummary
fn clone(&self) -> SchemaSummary
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 SchemaSummary
impl Debug for SchemaSummary
Source§impl<'de> Deserialize<'de> for SchemaSummary
impl<'de> Deserialize<'de> for SchemaSummary
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 Freeze for SchemaSummary
impl RefUnwindSafe for SchemaSummary
impl Send for SchemaSummary
impl Sync for SchemaSummary
impl Unpin for SchemaSummary
impl UnsafeUnpin for SchemaSummary
impl UnwindSafe for SchemaSummary
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