#[non_exhaustive]pub struct FleetAdvisorSchemaObjectResponse {
pub schema_id: Option<String>,
pub object_type: Option<String>,
pub number_of_objects: Option<i64>,
pub code_line_count: Option<i64>,
pub code_size: Option<i64>,
}
Expand description
Describes a schema object 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.schema_id: Option<String>
The ID of a schema object in a Fleet Advisor collector inventory.
object_type: Option<String>
The type of the schema object, as reported by the database engine. Examples include the following:
-
function
-
trigger
-
SYSTEM_TABLE
-
QUEUE
number_of_objects: Option<i64>
The number of objects in a schema object in a Fleet Advisor collector inventory.
code_line_count: Option<i64>
The number of lines of code in a schema object in a Fleet Advisor collector inventory.
code_size: Option<i64>
The size level of the code in a schema object in a Fleet Advisor collector inventory.
Implementations
sourceimpl FleetAdvisorSchemaObjectResponse
impl FleetAdvisorSchemaObjectResponse
sourcepub fn schema_id(&self) -> Option<&str>
pub fn schema_id(&self) -> Option<&str>
The ID of a schema object in a Fleet Advisor collector inventory.
sourcepub fn object_type(&self) -> Option<&str>
pub fn object_type(&self) -> Option<&str>
The type of the schema object, as reported by the database engine. Examples include the following:
-
function
-
trigger
-
SYSTEM_TABLE
-
QUEUE
sourcepub fn number_of_objects(&self) -> Option<i64>
pub fn number_of_objects(&self) -> Option<i64>
The number of objects in a schema object in a Fleet Advisor collector inventory.
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 object in a Fleet Advisor collector inventory.
sourceimpl FleetAdvisorSchemaObjectResponse
impl FleetAdvisorSchemaObjectResponse
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FleetAdvisorSchemaObjectResponse
Trait Implementations
sourceimpl Clone for FleetAdvisorSchemaObjectResponse
impl Clone for FleetAdvisorSchemaObjectResponse
sourcefn clone(&self) -> FleetAdvisorSchemaObjectResponse
fn clone(&self) -> FleetAdvisorSchemaObjectResponse
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<FleetAdvisorSchemaObjectResponse> for FleetAdvisorSchemaObjectResponse
impl PartialEq<FleetAdvisorSchemaObjectResponse> for FleetAdvisorSchemaObjectResponse
sourcefn eq(&self, other: &FleetAdvisorSchemaObjectResponse) -> bool
fn eq(&self, other: &FleetAdvisorSchemaObjectResponse) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FleetAdvisorSchemaObjectResponse) -> bool
fn ne(&self, other: &FleetAdvisorSchemaObjectResponse) -> bool
This method tests for !=
.
impl StructuralPartialEq for FleetAdvisorSchemaObjectResponse
Auto Trait Implementations
impl RefUnwindSafe for FleetAdvisorSchemaObjectResponse
impl Send for FleetAdvisorSchemaObjectResponse
impl Sync for FleetAdvisorSchemaObjectResponse
impl Unpin for FleetAdvisorSchemaObjectResponse
impl UnwindSafe for FleetAdvisorSchemaObjectResponse
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