#[non_exhaustive]pub struct SqlInstancesVerifyExternalSyncSettingsResponse {
pub kind: String,
pub errors: Vec<SqlExternalSyncSettingError>,
pub warnings: Vec<SqlExternalSyncSettingError>,
/* private fields */
}
Expand description
Instance verify external sync settings response.
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.kind: String
This is always sql#migrationSettingErrorList
.
errors: Vec<SqlExternalSyncSettingError>
List of migration violations.
warnings: Vec<SqlExternalSyncSettingError>
List of migration warnings.
Implementations§
Source§impl SqlInstancesVerifyExternalSyncSettingsResponse
impl SqlInstancesVerifyExternalSyncSettingsResponse
pub fn new() -> Self
Sourcepub fn set_errors<T, V>(self, v: T) -> Self
pub fn set_errors<T, V>(self, v: T) -> Self
Sets the value of errors.
Sourcepub fn set_warnings<T, V>(self, v: T) -> Self
pub fn set_warnings<T, V>(self, v: T) -> Self
Sets the value of warnings.
Trait Implementations§
Source§impl Clone for SqlInstancesVerifyExternalSyncSettingsResponse
impl Clone for SqlInstancesVerifyExternalSyncSettingsResponse
Source§fn clone(&self) -> SqlInstancesVerifyExternalSyncSettingsResponse
fn clone(&self) -> SqlInstancesVerifyExternalSyncSettingsResponse
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 Default for SqlInstancesVerifyExternalSyncSettingsResponse
impl Default for SqlInstancesVerifyExternalSyncSettingsResponse
Source§fn default() -> SqlInstancesVerifyExternalSyncSettingsResponse
fn default() -> SqlInstancesVerifyExternalSyncSettingsResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for SqlInstancesVerifyExternalSyncSettingsResponse
impl PartialEq for SqlInstancesVerifyExternalSyncSettingsResponse
Source§fn eq(&self, other: &SqlInstancesVerifyExternalSyncSettingsResponse) -> bool
fn eq(&self, other: &SqlInstancesVerifyExternalSyncSettingsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SqlInstancesVerifyExternalSyncSettingsResponse
Auto Trait Implementations§
impl Freeze for SqlInstancesVerifyExternalSyncSettingsResponse
impl RefUnwindSafe for SqlInstancesVerifyExternalSyncSettingsResponse
impl Send for SqlInstancesVerifyExternalSyncSettingsResponse
impl Sync for SqlInstancesVerifyExternalSyncSettingsResponse
impl Unpin for SqlInstancesVerifyExternalSyncSettingsResponse
impl UnwindSafe for SqlInstancesVerifyExternalSyncSettingsResponse
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