pub struct DropDatabaseResponse {
pub success: bool,
pub message: String,
}Expand description
Response for dropping a database
Fields§
§success: boolSuccess flag
message: StringMessage
Trait Implementations§
Source§impl Clone for DropDatabaseResponse
impl Clone for DropDatabaseResponse
Source§fn clone(&self) -> DropDatabaseResponse
fn clone(&self) -> DropDatabaseResponse
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 DropDatabaseResponse
impl Debug for DropDatabaseResponse
Source§impl<'de> Deserialize<'de> for DropDatabaseResponse
impl<'de> Deserialize<'de> for DropDatabaseResponse
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 DropDatabaseResponse
impl RefUnwindSafe for DropDatabaseResponse
impl Send for DropDatabaseResponse
impl Sync for DropDatabaseResponse
impl Unpin for DropDatabaseResponse
impl UnsafeUnpin for DropDatabaseResponse
impl UnwindSafe for DropDatabaseResponse
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