pub struct DeleteLocationCustomAttributeResponse {
pub errors: Option<Vec<Error>>,
}Expand description
DeleteLocationCustomAttributeResponse : Represents a DeleteLocationCustomAttribute response. Either an empty object {} (for a successful deletion) or errors is present in the response.
Fields§
§errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl DeleteLocationCustomAttributeResponse
impl DeleteLocationCustomAttributeResponse
Sourcepub fn new() -> DeleteLocationCustomAttributeResponse
pub fn new() -> DeleteLocationCustomAttributeResponse
Represents a DeleteLocationCustomAttribute response. Either an empty object {} (for a successful deletion) or errors is present in the response.
Trait Implementations§
Source§impl Clone for DeleteLocationCustomAttributeResponse
impl Clone for DeleteLocationCustomAttributeResponse
Source§fn clone(&self) -> DeleteLocationCustomAttributeResponse
fn clone(&self) -> DeleteLocationCustomAttributeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeleteLocationCustomAttributeResponse
impl Default for DeleteLocationCustomAttributeResponse
Source§fn default() -> DeleteLocationCustomAttributeResponse
fn default() -> DeleteLocationCustomAttributeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteLocationCustomAttributeResponse
impl<'de> Deserialize<'de> for DeleteLocationCustomAttributeResponse
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
impl StructuralPartialEq for DeleteLocationCustomAttributeResponse
Auto Trait Implementations§
impl Freeze for DeleteLocationCustomAttributeResponse
impl RefUnwindSafe for DeleteLocationCustomAttributeResponse
impl Send for DeleteLocationCustomAttributeResponse
impl Sync for DeleteLocationCustomAttributeResponse
impl Unpin for DeleteLocationCustomAttributeResponse
impl UnsafeUnpin for DeleteLocationCustomAttributeResponse
impl UnwindSafe for DeleteLocationCustomAttributeResponse
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