#[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§
source§impl 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.
source§impl FleetAdvisorSchemaObjectResponse
impl FleetAdvisorSchemaObjectResponse
sourcepub fn builder() -> FleetAdvisorSchemaObjectResponseBuilder
pub fn builder() -> FleetAdvisorSchemaObjectResponseBuilder
Creates a new builder-style object to manufacture FleetAdvisorSchemaObjectResponse
.
Trait Implementations§
source§impl Clone for FleetAdvisorSchemaObjectResponse
impl Clone for FleetAdvisorSchemaObjectResponse
source§fn clone(&self) -> FleetAdvisorSchemaObjectResponse
fn clone(&self) -> FleetAdvisorSchemaObjectResponse
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for FleetAdvisorSchemaObjectResponse
impl PartialEq for FleetAdvisorSchemaObjectResponse
source§fn eq(&self, other: &FleetAdvisorSchemaObjectResponse) -> bool
fn eq(&self, other: &FleetAdvisorSchemaObjectResponse) -> bool
self
and other
values to be equal, and is used
by ==
.