pub struct UpdateLocationSettingsResponse {
pub errors: Option<Vec<Error>>,
pub location_settings: Option<CheckoutLocationSettings>,
}Expand description
This is a model struct for UpdateLocationSettingsResponse type
Fields§
§errors: Option<Vec<Error>>Information about errors encountered during the request.
location_settings: Option<CheckoutLocationSettings>The updated location settings.
Trait Implementations§
Source§impl Clone for UpdateLocationSettingsResponse
impl Clone for UpdateLocationSettingsResponse
Source§fn clone(&self) -> UpdateLocationSettingsResponse
fn clone(&self) -> UpdateLocationSettingsResponse
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<'de> Deserialize<'de> for UpdateLocationSettingsResponse
impl<'de> Deserialize<'de> for UpdateLocationSettingsResponse
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 PartialEq for UpdateLocationSettingsResponse
impl PartialEq for UpdateLocationSettingsResponse
Source§fn eq(&self, other: &UpdateLocationSettingsResponse) -> bool
fn eq(&self, other: &UpdateLocationSettingsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UpdateLocationSettingsResponse
impl StructuralPartialEq for UpdateLocationSettingsResponse
Auto Trait Implementations§
impl Freeze for UpdateLocationSettingsResponse
impl RefUnwindSafe for UpdateLocationSettingsResponse
impl Send for UpdateLocationSettingsResponse
impl Sync for UpdateLocationSettingsResponse
impl Unpin for UpdateLocationSettingsResponse
impl UnwindSafe for UpdateLocationSettingsResponse
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