#[non_exhaustive]pub struct DatabaseInstanceSoftwareDetailsResponse {
pub engine: Option<String>,
pub engine_version: Option<String>,
pub engine_edition: Option<String>,
pub service_pack: Option<String>,
pub support_level: Option<String>,
pub os_architecture: Option<i32>,
pub tooltip: Option<String>,
}
Expand description
Describes an inventory database instance for a Fleet Advisor collector.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.engine: Option<String>
The database engine of a database in a Fleet Advisor collector inventory, for example Microsoft SQL Server
.
engine_version: Option<String>
The database engine version of a database in a Fleet Advisor collector inventory, for example 2019
.
engine_edition: Option<String>
The database engine edition of a database in a Fleet Advisor collector inventory, for example Express
.
service_pack: Option<String>
The service pack level of the database.
support_level: Option<String>
The support level of the database, for example Mainstream support
.
os_architecture: Option<i32>
The operating system architecture of the database.
tooltip: Option<String>
Information about the database engine software, for example Mainstream support ends on November 14th, 2024
.
Implementations
sourceimpl DatabaseInstanceSoftwareDetailsResponse
impl DatabaseInstanceSoftwareDetailsResponse
sourcepub fn engine(&self) -> Option<&str>
pub fn engine(&self) -> Option<&str>
The database engine of a database in a Fleet Advisor collector inventory, for example Microsoft SQL Server
.
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The database engine version of a database in a Fleet Advisor collector inventory, for example 2019
.
sourcepub fn engine_edition(&self) -> Option<&str>
pub fn engine_edition(&self) -> Option<&str>
The database engine edition of a database in a Fleet Advisor collector inventory, for example Express
.
sourcepub fn service_pack(&self) -> Option<&str>
pub fn service_pack(&self) -> Option<&str>
The service pack level of the database.
sourcepub fn support_level(&self) -> Option<&str>
pub fn support_level(&self) -> Option<&str>
The support level of the database, for example Mainstream support
.
sourcepub fn os_architecture(&self) -> Option<i32>
pub fn os_architecture(&self) -> Option<i32>
The operating system architecture of the database.
sourceimpl DatabaseInstanceSoftwareDetailsResponse
impl DatabaseInstanceSoftwareDetailsResponse
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DatabaseInstanceSoftwareDetailsResponse
Trait Implementations
sourceimpl Clone for DatabaseInstanceSoftwareDetailsResponse
impl Clone for DatabaseInstanceSoftwareDetailsResponse
sourcefn clone(&self) -> DatabaseInstanceSoftwareDetailsResponse
fn clone(&self) -> DatabaseInstanceSoftwareDetailsResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<DatabaseInstanceSoftwareDetailsResponse> for DatabaseInstanceSoftwareDetailsResponse
impl PartialEq<DatabaseInstanceSoftwareDetailsResponse> for DatabaseInstanceSoftwareDetailsResponse
sourcefn eq(&self, other: &DatabaseInstanceSoftwareDetailsResponse) -> bool
fn eq(&self, other: &DatabaseInstanceSoftwareDetailsResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DatabaseInstanceSoftwareDetailsResponse) -> bool
fn ne(&self, other: &DatabaseInstanceSoftwareDetailsResponse) -> bool
This method tests for !=
.
impl StructuralPartialEq for DatabaseInstanceSoftwareDetailsResponse
Auto Trait Implementations
impl RefUnwindSafe for DatabaseInstanceSoftwareDetailsResponse
impl Send for DatabaseInstanceSoftwareDetailsResponse
impl Sync for DatabaseInstanceSoftwareDetailsResponse
impl Unpin for DatabaseInstanceSoftwareDetailsResponse
impl UnwindSafe for DatabaseInstanceSoftwareDetailsResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more