[][src]Struct gcp_client::google::cloud::datacatalog::v1beta1::SearchCatalogResult

pub struct SearchCatalogResult {
    pub search_result_type: i32,
    pub search_result_subtype: String,
    pub relative_resource_name: String,
    pub linked_resource: String,
}

A result that appears in the response of a search request. Each result captures details of one entry that matches the search.

Fields

search_result_type: i32

Type of the search result. This field can be used to determine which Get method to call to fetch the full resource.

search_result_subtype: String

Sub-type of the search result. This is a dot-delimited description of the resource's full type, and is the same as the value callers would provide in the "type" search facet. Examples: entry.table, entry.dataStream, tagTemplate.

relative_resource_name: String

The relative resource name of the resource in URL format. Examples:

  • projects/{project_id}/locations/{location_id}/entryGroups/{entry_group_id}/entries/{entry_id}
  • projects/{project_id}/tagTemplates/{tag_template_id}
linked_resource: String

The full name of the cloud resource the entry belongs to. See: https://cloud.google.com/apis/design/resource_names#full_resource_name. Example:

  • //bigquery.googleapis.com/projects/projectId/datasets/datasetId/tables/tableId

Implementations

impl SearchCatalogResult[src]

pub fn search_result_type(&self) -> SearchResultType[src]

Returns the enum value of search_result_type, or the default if the field is set to an invalid enum value.

pub fn set_search_result_type(&mut self, value: SearchResultType)[src]

Sets search_result_type to the provided enum value.

Trait Implementations

impl Clone for SearchCatalogResult[src]

impl Debug for SearchCatalogResult[src]

impl Default for SearchCatalogResult[src]

impl Message for SearchCatalogResult[src]

impl PartialEq<SearchCatalogResult> for SearchCatalogResult[src]

impl StructuralPartialEq for SearchCatalogResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]