#[non_exhaustive]pub struct GetComponentTypeOutput { /* private fields */ }Implementations
sourceimpl GetComponentTypeOutput
impl GetComponentTypeOutput
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace that contains the component type.
sourcepub fn is_singleton(&self) -> Option<bool>
pub fn is_singleton(&self) -> Option<bool>
A Boolean value that specifies whether an entity can have more than one component of this type.
sourcepub fn component_type_id(&self) -> Option<&str>
pub fn component_type_id(&self) -> Option<&str>
The ID of the component type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the component type.
sourcepub fn property_definitions(
&self
) -> Option<&HashMap<String, PropertyDefinitionResponse>>
pub fn property_definitions(
&self
) -> Option<&HashMap<String, PropertyDefinitionResponse>>
An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
sourcepub fn extends_from(&self) -> Option<&[String]>
pub fn extends_from(&self) -> Option<&[String]>
The name of the parent component type that this component type extends.
sourcepub fn functions(&self) -> Option<&HashMap<String, FunctionResponse>>
pub fn functions(&self) -> Option<&HashMap<String, FunctionResponse>>
An object that maps strings to the functions in the component type. Each string in the mapping must be unique to this object.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time when the component type was created.
sourcepub fn update_date_time(&self) -> Option<&DateTime>
pub fn update_date_time(&self) -> Option<&DateTime>
The date and time when the component was last updated.
sourcepub fn is_abstract(&self) -> Option<bool>
pub fn is_abstract(&self) -> Option<bool>
A Boolean value that specifies whether the component type is abstract.
sourcepub fn is_schema_initialized(&self) -> Option<bool>
pub fn is_schema_initialized(&self) -> Option<bool>
A Boolean value that specifies whether the component type has a schema initializer and that the schema initializer has run.
sourceimpl GetComponentTypeOutput
impl GetComponentTypeOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetComponentTypeOutput.
Trait Implementations
sourceimpl Clone for GetComponentTypeOutput
impl Clone for GetComponentTypeOutput
sourcefn clone(&self) -> GetComponentTypeOutput
fn clone(&self) -> GetComponentTypeOutput
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 GetComponentTypeOutput
impl Debug for GetComponentTypeOutput
sourceimpl PartialEq<GetComponentTypeOutput> for GetComponentTypeOutput
impl PartialEq<GetComponentTypeOutput> for GetComponentTypeOutput
sourcefn eq(&self, other: &GetComponentTypeOutput) -> bool
fn eq(&self, other: &GetComponentTypeOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for GetComponentTypeOutput
Auto Trait Implementations
impl RefUnwindSafe for GetComponentTypeOutput
impl Send for GetComponentTypeOutput
impl Sync for GetComponentTypeOutput
impl Unpin for GetComponentTypeOutput
impl UnwindSafe for GetComponentTypeOutput
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