pub struct DatabaseList {
pub total: u64,
pub databases: Vec<Database>,
}Expand description
Databases List
Fields§
§total: u64Total number of databases documents that matched your query.
databases: Vec<Database>List of databases.
Trait Implementations§
Source§impl Clone for DatabaseList
impl Clone for DatabaseList
Source§fn clone(&self) -> DatabaseList
fn clone(&self) -> DatabaseList
Returns a duplicate of the value. Read more
1.0.0 · 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 DatabaseList
impl Debug for DatabaseList
Source§impl Default for DatabaseList
impl Default for DatabaseList
Source§fn default() -> DatabaseList
fn default() -> DatabaseList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseList
impl<'de> Deserialize<'de> for DatabaseList
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 DatabaseList
impl PartialEq for DatabaseList
Source§impl Serialize for DatabaseList
impl Serialize for DatabaseList
impl StructuralPartialEq for DatabaseList
Auto Trait Implementations§
impl Freeze for DatabaseList
impl RefUnwindSafe for DatabaseList
impl Send for DatabaseList
impl Sync for DatabaseList
impl Unpin for DatabaseList
impl UnwindSafe for DatabaseList
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