Struct aws_sdk_databasemigration::model::SchemaResponse
source · [−]#[non_exhaustive]pub struct SchemaResponse {
pub code_line_count: Option<i64>,
pub code_size: Option<i64>,
pub complexity: Option<String>,
pub server: Option<ServerShortInfoResponse>,
pub database_instance: Option<DatabaseShortInfoResponse>,
pub schema_id: Option<String>,
pub schema_name: Option<String>,
pub original_schema: Option<SchemaShortInfoResponse>,
pub similarity: Option<f64>,
}
Expand description
Describes a schema in a Fleet Advisor collector inventory.
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.code_line_count: Option<i64>
The number of lines of code in a schema in a Fleet Advisor collector inventory.
code_size: Option<i64>
The size level of the code in a schema in a Fleet Advisor collector inventory.
complexity: Option<String>
The complexity level of the code in a schema in a Fleet Advisor collector inventory.
server: Option<ServerShortInfoResponse>
The database server for a schema in a Fleet Advisor collector inventory.
database_instance: Option<DatabaseShortInfoResponse>
The database for a schema in a Fleet Advisor collector inventory.
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.
original_schema: Option<SchemaShortInfoResponse>
Describes a schema in a Fleet Advisor collector inventory.
similarity: Option<f64>
The similarity value for a schema in a Fleet Advisor collector inventory. A higher similarity value indicates that a schema is likely to be a duplicate.
Implementations
sourceimpl SchemaResponse
impl SchemaResponse
sourcepub fn code_line_count(&self) -> Option<i64>
pub fn code_line_count(&self) -> Option<i64>
The number of lines of code in a schema in a Fleet Advisor collector inventory.
sourcepub fn code_size(&self) -> Option<i64>
pub fn code_size(&self) -> Option<i64>
The size level of the code in a schema in a Fleet Advisor collector inventory.
sourcepub fn complexity(&self) -> Option<&str>
pub fn complexity(&self) -> Option<&str>
The complexity level of the code in a schema in a Fleet Advisor collector inventory.
sourcepub fn server(&self) -> Option<&ServerShortInfoResponse>
pub fn server(&self) -> Option<&ServerShortInfoResponse>
The database server for a schema in a Fleet Advisor collector inventory.
sourcepub fn database_instance(&self) -> Option<&DatabaseShortInfoResponse>
pub fn database_instance(&self) -> Option<&DatabaseShortInfoResponse>
The database for a schema in a Fleet Advisor collector inventory.
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 original_schema(&self) -> Option<&SchemaShortInfoResponse>
pub fn original_schema(&self) -> Option<&SchemaShortInfoResponse>
Describes a schema in a Fleet Advisor collector inventory.
sourcepub fn similarity(&self) -> Option<f64>
pub fn similarity(&self) -> Option<f64>
The similarity value for a schema in a Fleet Advisor collector inventory. A higher similarity value indicates that a schema is likely to be a duplicate.
sourceimpl SchemaResponse
impl SchemaResponse
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SchemaResponse
Trait Implementations
sourceimpl Clone for SchemaResponse
impl Clone for SchemaResponse
sourcefn clone(&self) -> SchemaResponse
fn clone(&self) -> SchemaResponse
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 Debug for SchemaResponse
impl Debug for SchemaResponse
sourceimpl PartialEq<SchemaResponse> for SchemaResponse
impl PartialEq<SchemaResponse> for SchemaResponse
sourcefn eq(&self, other: &SchemaResponse) -> bool
fn eq(&self, other: &SchemaResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SchemaResponse) -> bool
fn ne(&self, other: &SchemaResponse) -> bool
This method tests for !=
.
impl StructuralPartialEq for SchemaResponse
Auto Trait Implementations
impl RefUnwindSafe for SchemaResponse
impl Send for SchemaResponse
impl Sync for SchemaResponse
impl Unpin for SchemaResponse
impl UnwindSafe for SchemaResponse
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