pub struct RetrieveLocationCustomAttributeResponse {
pub custom_attribute: Option<Box<CustomAttribute>>,
pub errors: Option<Vec<Error>>,
}Expand description
RetrieveLocationCustomAttributeResponse : Represents a RetrieveLocationCustomAttribute response. Either custom_attribute_definition or errors is present in the response.
Fields§
§custom_attribute: Option<Box<CustomAttribute>>§errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl RetrieveLocationCustomAttributeResponse
impl RetrieveLocationCustomAttributeResponse
Sourcepub fn new() -> RetrieveLocationCustomAttributeResponse
pub fn new() -> RetrieveLocationCustomAttributeResponse
Represents a RetrieveLocationCustomAttribute response. Either custom_attribute_definition or errors is present in the response.
Trait Implementations§
Source§impl Clone for RetrieveLocationCustomAttributeResponse
impl Clone for RetrieveLocationCustomAttributeResponse
Source§fn clone(&self) -> RetrieveLocationCustomAttributeResponse
fn clone(&self) -> RetrieveLocationCustomAttributeResponse
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 RetrieveLocationCustomAttributeResponse
impl Default for RetrieveLocationCustomAttributeResponse
Source§fn default() -> RetrieveLocationCustomAttributeResponse
fn default() -> RetrieveLocationCustomAttributeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetrieveLocationCustomAttributeResponse
impl<'de> Deserialize<'de> for RetrieveLocationCustomAttributeResponse
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 RetrieveLocationCustomAttributeResponse
Auto Trait Implementations§
impl Freeze for RetrieveLocationCustomAttributeResponse
impl RefUnwindSafe for RetrieveLocationCustomAttributeResponse
impl Send for RetrieveLocationCustomAttributeResponse
impl Sync for RetrieveLocationCustomAttributeResponse
impl Unpin for RetrieveLocationCustomAttributeResponse
impl UnsafeUnpin for RetrieveLocationCustomAttributeResponse
impl UnwindSafe for RetrieveLocationCustomAttributeResponse
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