pub struct DatabaseSummary {
pub database_id: String,
pub org_id: Option<String>,
pub project_id: Option<String>,
pub name: Option<String>,
pub region: Option<String>,
pub endpoint: Option<String>,
}Fields§
§database_id: String§org_id: Option<String>§project_id: Option<String>§name: Option<String>§region: Option<String>§endpoint: Option<String>Trait Implementations§
Source§impl Clone for DatabaseSummary
impl Clone for DatabaseSummary
Source§fn clone(&self) -> DatabaseSummary
fn clone(&self) -> DatabaseSummary
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 DatabaseSummary
impl Debug for DatabaseSummary
Source§impl<'de> Deserialize<'de> for DatabaseSummary
impl<'de> Deserialize<'de> for DatabaseSummary
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
Source§impl PartialEq for DatabaseSummary
impl PartialEq for DatabaseSummary
Source§fn eq(&self, other: &DatabaseSummary) -> bool
fn eq(&self, other: &DatabaseSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DatabaseSummary
impl Serialize for DatabaseSummary
impl StructuralPartialEq for DatabaseSummary
Auto Trait Implementations§
impl Freeze for DatabaseSummary
impl RefUnwindSafe for DatabaseSummary
impl Send for DatabaseSummary
impl Sync for DatabaseSummary
impl Unpin for DatabaseSummary
impl UnsafeUnpin for DatabaseSummary
impl UnwindSafe for DatabaseSummary
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