#[non_exhaustive]pub struct MetastoreServiceConfig {
pub metastore_service: String,
/* private fields */
}Expand description
Configuration of the Dataproc Metastore Service.
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.metastore_service: StringOptional. Resource name of an existing Dataproc Metastore service.
Example:
projects/[project_id]/locations/[region]/services/[service_id]
Implementations§
Source§impl MetastoreServiceConfig
impl MetastoreServiceConfig
pub fn new() -> Self
Sourcepub fn set_metastore_service<T: Into<String>>(self, v: T) -> Self
pub fn set_metastore_service<T: Into<String>>(self, v: T) -> Self
Sets the value of metastore_service.
Trait Implementations§
Source§impl Clone for MetastoreServiceConfig
impl Clone for MetastoreServiceConfig
Source§fn clone(&self) -> MetastoreServiceConfig
fn clone(&self) -> MetastoreServiceConfig
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 MetastoreServiceConfig
impl Debug for MetastoreServiceConfig
Source§impl Default for MetastoreServiceConfig
impl Default for MetastoreServiceConfig
Source§fn default() -> MetastoreServiceConfig
fn default() -> MetastoreServiceConfig
Returns the “default value” for a type. Read more
Source§impl Message for MetastoreServiceConfig
impl Message for MetastoreServiceConfig
Source§impl PartialEq for MetastoreServiceConfig
impl PartialEq for MetastoreServiceConfig
impl StructuralPartialEq for MetastoreServiceConfig
Auto Trait Implementations§
impl Freeze for MetastoreServiceConfig
impl RefUnwindSafe for MetastoreServiceConfig
impl Send for MetastoreServiceConfig
impl Sync for MetastoreServiceConfig
impl Unpin for MetastoreServiceConfig
impl UnwindSafe for MetastoreServiceConfig
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