pub struct RDSDatabase {
pub database_name: String,
pub instance_identifier: String,
}
Expand description
The database details of an Amazon RDS database.
Fields§
§database_name: String
§instance_identifier: String
The ID of an RDS DB instance.
Trait Implementations§
Source§impl Clone for RDSDatabase
impl Clone for RDSDatabase
Source§fn clone(&self) -> RDSDatabase
fn clone(&self) -> RDSDatabase
Returns a copy 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 RDSDatabase
impl Debug for RDSDatabase
Source§impl Default for RDSDatabase
impl Default for RDSDatabase
Source§fn default() -> RDSDatabase
fn default() -> RDSDatabase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RDSDatabase
impl<'de> Deserialize<'de> for RDSDatabase
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 RDSDatabase
impl PartialEq for RDSDatabase
Source§impl Serialize for RDSDatabase
impl Serialize for RDSDatabase
impl StructuralPartialEq for RDSDatabase
Auto Trait Implementations§
impl Freeze for RDSDatabase
impl RefUnwindSafe for RDSDatabase
impl Send for RDSDatabase
impl Sync for RDSDatabase
impl Unpin for RDSDatabase
impl UnwindSafe for RDSDatabase
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