#[non_exhaustive]pub struct GetFeaturestoreRequest {
pub name: String,
/* private fields */
}Available on crate feature
featurestore-service only.Expand description
Request message for FeaturestoreService.GetFeaturestore.
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: StringRequired. The name of the Featurestore resource.
Implementations§
Trait Implementations§
Source§impl Clone for GetFeaturestoreRequest
impl Clone for GetFeaturestoreRequest
Source§fn clone(&self) -> GetFeaturestoreRequest
fn clone(&self) -> GetFeaturestoreRequest
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 GetFeaturestoreRequest
impl Debug for GetFeaturestoreRequest
Source§impl Default for GetFeaturestoreRequest
impl Default for GetFeaturestoreRequest
Source§fn default() -> GetFeaturestoreRequest
fn default() -> GetFeaturestoreRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetFeaturestoreRequest
impl Message for GetFeaturestoreRequest
Source§impl PartialEq for GetFeaturestoreRequest
impl PartialEq for GetFeaturestoreRequest
impl StructuralPartialEq for GetFeaturestoreRequest
Auto Trait Implementations§
impl Freeze for GetFeaturestoreRequest
impl RefUnwindSafe for GetFeaturestoreRequest
impl Send for GetFeaturestoreRequest
impl Sync for GetFeaturestoreRequest
impl Unpin for GetFeaturestoreRequest
impl UnwindSafe for GetFeaturestoreRequest
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