#[non_exhaustive]pub struct SiteSearchEngine {
pub name: String,
/* private fields */
}Available on crate feature
site-search-engine-service only.Expand description
SiteSearchEngine captures DataStore level site search persisting configurations. It is a singleton value per data store.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe fully qualified resource name of the site search engine.
Format: projects/*/locations/*/dataStores/*/siteSearchEngine
Implementations§
Trait Implementations§
Source§impl Clone for SiteSearchEngine
impl Clone for SiteSearchEngine
Source§fn clone(&self) -> SiteSearchEngine
fn clone(&self) -> SiteSearchEngine
Returns a duplicate 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 Debug for SiteSearchEngine
impl Debug for SiteSearchEngine
Source§impl Default for SiteSearchEngine
impl Default for SiteSearchEngine
Source§fn default() -> SiteSearchEngine
fn default() -> SiteSearchEngine
Returns the “default value” for a type. Read more
Source§impl Message for SiteSearchEngine
impl Message for SiteSearchEngine
Source§impl PartialEq for SiteSearchEngine
impl PartialEq for SiteSearchEngine
impl StructuralPartialEq for SiteSearchEngine
Auto Trait Implementations§
impl Freeze for SiteSearchEngine
impl RefUnwindSafe for SiteSearchEngine
impl Send for SiteSearchEngine
impl Sync for SiteSearchEngine
impl Unpin for SiteSearchEngine
impl UnwindSafe for SiteSearchEngine
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