#[non_exhaustive]pub struct SchemaShortInfoResponse {
pub schema_id: Option<String>,
pub schema_name: Option<String>,
pub database_id: Option<String>,
pub database_name: Option<String>,
pub database_ip_address: Option<String>,
}
Expand description
Describes a schema 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.schema_id: Option<String>
The ID of a schema in a Fleet Advisor collector inventory.
schema_name: Option<String>
The name of a schema in a Fleet Advisor collector inventory.
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.
Implementations§
source§impl SchemaShortInfoResponse
impl SchemaShortInfoResponse
sourcepub fn schema_id(&self) -> Option<&str>
pub fn schema_id(&self) -> Option<&str>
The ID of a schema in a Fleet Advisor collector inventory.
sourcepub fn schema_name(&self) -> Option<&str>
pub fn schema_name(&self) -> Option<&str>
The name of a schema in a Fleet Advisor collector inventory.
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.
source§impl SchemaShortInfoResponse
impl SchemaShortInfoResponse
sourcepub fn builder() -> SchemaShortInfoResponseBuilder
pub fn builder() -> SchemaShortInfoResponseBuilder
Creates a new builder-style object to manufacture SchemaShortInfoResponse
.
Trait Implementations§
source§impl Clone for SchemaShortInfoResponse
impl Clone for SchemaShortInfoResponse
source§fn clone(&self) -> SchemaShortInfoResponse
fn clone(&self) -> SchemaShortInfoResponse
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 SchemaShortInfoResponse
impl Debug for SchemaShortInfoResponse
source§impl PartialEq for SchemaShortInfoResponse
impl PartialEq for SchemaShortInfoResponse
source§fn eq(&self, other: &SchemaShortInfoResponse) -> bool
fn eq(&self, other: &SchemaShortInfoResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SchemaShortInfoResponse
Auto Trait Implementations§
impl RefUnwindSafe for SchemaShortInfoResponse
impl Send for SchemaShortInfoResponse
impl Sync for SchemaShortInfoResponse
impl Unpin for SchemaShortInfoResponse
impl UnwindSafe for SchemaShortInfoResponse
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.