#[non_exhaustive]pub struct SyncFeatureViewResponse {
pub feature_view_sync: String,
/* private fields */
}Expand description
Response message for FeatureOnlineStoreAdminService.SyncFeatureView.
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.feature_view_sync: StringFormat:
projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}
Implementations§
Source§impl SyncFeatureViewResponse
impl SyncFeatureViewResponse
pub fn new() -> Self
Sourcepub fn set_feature_view_sync<T: Into<String>>(self, v: T) -> Self
pub fn set_feature_view_sync<T: Into<String>>(self, v: T) -> Self
Sets the value of feature_view_sync.
Trait Implementations§
Source§impl Clone for SyncFeatureViewResponse
impl Clone for SyncFeatureViewResponse
Source§fn clone(&self) -> SyncFeatureViewResponse
fn clone(&self) -> SyncFeatureViewResponse
Returns a copy 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 SyncFeatureViewResponse
impl Debug for SyncFeatureViewResponse
Source§impl Default for SyncFeatureViewResponse
impl Default for SyncFeatureViewResponse
Source§fn default() -> SyncFeatureViewResponse
fn default() -> SyncFeatureViewResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncFeatureViewResponsewhere
SyncFeatureViewResponse: Default,
impl<'de> Deserialize<'de> for SyncFeatureViewResponsewhere
SyncFeatureViewResponse: Default,
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for SyncFeatureViewResponse
impl Message for SyncFeatureViewResponse
Source§impl PartialEq for SyncFeatureViewResponse
impl PartialEq for SyncFeatureViewResponse
Source§impl Serialize for SyncFeatureViewResponse
impl Serialize for SyncFeatureViewResponse
impl StructuralPartialEq for SyncFeatureViewResponse
Auto Trait Implementations§
impl Freeze for SyncFeatureViewResponse
impl RefUnwindSafe for SyncFeatureViewResponse
impl Send for SyncFeatureViewResponse
impl Sync for SyncFeatureViewResponse
impl Unpin for SyncFeatureViewResponse
impl UnwindSafe for SyncFeatureViewResponse
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