pub struct GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations {
pub deprecated: Option<String>,
pub description: Option<String>,
pub display_name: Option<String>,
pub display_order: Option<i32>,
pub string_type: Option<String>,
pub string_values: Option<Vec<String>>,
}
Expand description
Definition of the annotations of a field
This type is not used in any activity, and only used as part of another schema.
Fields§
§deprecated: Option<String>
Optional. Marks a field as deprecated, a deprecation message can be included.
description: Option<String>
Optional. Specify a description for a field
display_name: Option<String>
Optional. Specify a displayname for a field.
display_order: Option<i32>
Optional. Specify a display order for a field. Display order can be used to reorder where a field is rendered
string_type: Option<String>
Optional. String Type annotations can be used to specify special meaning to string fields. The following values are supported: richText: The field must be interpreted as a rich text field. url: A fully qualified url link. resource: A service qualified resource reference.
string_values: Option<Vec<String>>
Optional. Suggested hints for string fields. These can be used to suggest values to users, through an UI for example.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl Clone for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
Source§fn clone(&self) -> GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
fn clone(&self) -> GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl Default for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
Source§fn default() -> GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
fn default() -> GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl RefUnwindSafe for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl Send for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl Sync for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl Unpin for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
impl UnwindSafe for GoogleCloudDataplexV1AspectTypeMetadataTemplateAnnotations
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§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