pub struct DbSummary {
pub name: String,
pub is_template: bool,
pub owner: String,
}Fields§
§name: String§is_template: boolTrue for template0 / template1. Filtered out by list_databases
but the field is preserved so callers can show templates if desired.
owner: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for DbSummary
impl<'de> Deserialize<'de> for DbSummary
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 DbSummary
impl RefUnwindSafe for DbSummary
impl Send for DbSummary
impl Sync for DbSummary
impl Unpin for DbSummary
impl UnsafeUnpin for DbSummary
impl UnwindSafe for DbSummary
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