#[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 ==
.impl StructuralPartialEq for FleetAdvisorSchemaObjectResponse
Auto Trait Implementations§
impl Freeze for FleetAdvisorSchemaObjectResponse
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more