#[non_exhaustive]pub struct FleetAdvisorSchemaObjectResponse { /* private fields */ }
Expand description
Describes 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
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 PartialEq<FleetAdvisorSchemaObjectResponse> for FleetAdvisorSchemaObjectResponse
impl PartialEq<FleetAdvisorSchemaObjectResponse> for FleetAdvisorSchemaObjectResponse
source§fn 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 ==
.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§
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