#[non_exhaustive]pub struct DatabaseShortInfoResponse {
pub database_id: Option<String>,
pub database_name: Option<String>,
pub database_ip_address: Option<String>,
pub database_engine: Option<String>,
}
Expand description
Describes a database in a Fleet Advisor collector inventory.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.database_id: Option<String>
The ID of a database in a Fleet Advisor collector inventory.
database_name: Option<String>
The name of a database in a Fleet Advisor collector inventory.
database_ip_address: Option<String>
The IP address of a database in a Fleet Advisor collector inventory.
database_engine: Option<String>
The database engine of a database in a Fleet Advisor collector inventory, for example PostgreSQL
.
Implementations§
source§impl DatabaseShortInfoResponse
impl DatabaseShortInfoResponse
sourcepub fn database_id(&self) -> Option<&str>
pub fn database_id(&self) -> Option<&str>
The ID of a database in a Fleet Advisor collector inventory.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of a database in a Fleet Advisor collector inventory.
sourcepub fn database_ip_address(&self) -> Option<&str>
pub fn database_ip_address(&self) -> Option<&str>
The IP address of a database in a Fleet Advisor collector inventory.
sourcepub fn database_engine(&self) -> Option<&str>
pub fn database_engine(&self) -> Option<&str>
The database engine of a database in a Fleet Advisor collector inventory, for example PostgreSQL
.
source§impl DatabaseShortInfoResponse
impl DatabaseShortInfoResponse
sourcepub fn builder() -> DatabaseShortInfoResponseBuilder
pub fn builder() -> DatabaseShortInfoResponseBuilder
Creates a new builder-style object to manufacture DatabaseShortInfoResponse
.
Trait Implementations§
source§impl Clone for DatabaseShortInfoResponse
impl Clone for DatabaseShortInfoResponse
source§fn clone(&self) -> DatabaseShortInfoResponse
fn clone(&self) -> DatabaseShortInfoResponse
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 DatabaseShortInfoResponse
impl Debug for DatabaseShortInfoResponse
source§impl PartialEq<DatabaseShortInfoResponse> for DatabaseShortInfoResponse
impl PartialEq<DatabaseShortInfoResponse> for DatabaseShortInfoResponse
source§fn eq(&self, other: &DatabaseShortInfoResponse) -> bool
fn eq(&self, other: &DatabaseShortInfoResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DatabaseShortInfoResponse
Auto Trait Implementations§
impl RefUnwindSafe for DatabaseShortInfoResponse
impl Send for DatabaseShortInfoResponse
impl Sync for DatabaseShortInfoResponse
impl Unpin for DatabaseShortInfoResponse
impl UnwindSafe for DatabaseShortInfoResponse
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