pub struct ApiDiscoveryResponseBodyGetAllServices {
pub product: Option<Box<ApiDiscoveryResponseProductProduct>>,
pub customer: Option<Box<ApiDiscoveryResponseCustomerCustomer>>,
pub services: Option<Vec<String>>,
pub _links: Option<Box<ApiDiscoveryResponseLinksGetAllServicesLinks>>,
}Fields§
§product: Option<Box<ApiDiscoveryResponseProductProduct>>§customer: Option<Box<ApiDiscoveryResponseCustomerCustomer>>§services: Option<Vec<String>>A list of services for a customer with API Discovery enabled.
_links: Option<Box<ApiDiscoveryResponseLinksGetAllServicesLinks>>Implementations§
Trait Implementations§
Source§impl Clone for ApiDiscoveryResponseBodyGetAllServices
impl Clone for ApiDiscoveryResponseBodyGetAllServices
Source§fn clone(&self) -> ApiDiscoveryResponseBodyGetAllServices
fn clone(&self) -> ApiDiscoveryResponseBodyGetAllServices
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 ApiDiscoveryResponseBodyGetAllServices
impl Default for ApiDiscoveryResponseBodyGetAllServices
Source§fn default() -> ApiDiscoveryResponseBodyGetAllServices
fn default() -> ApiDiscoveryResponseBodyGetAllServices
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiDiscoveryResponseBodyGetAllServices
impl<'de> Deserialize<'de> for ApiDiscoveryResponseBodyGetAllServices
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 ApiDiscoveryResponseBodyGetAllServices
impl PartialEq for ApiDiscoveryResponseBodyGetAllServices
Source§fn eq(&self, other: &ApiDiscoveryResponseBodyGetAllServices) -> bool
fn eq(&self, other: &ApiDiscoveryResponseBodyGetAllServices) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ApiDiscoveryResponseBodyGetAllServices
Auto Trait Implementations§
impl Freeze for ApiDiscoveryResponseBodyGetAllServices
impl RefUnwindSafe for ApiDiscoveryResponseBodyGetAllServices
impl Send for ApiDiscoveryResponseBodyGetAllServices
impl Sync for ApiDiscoveryResponseBodyGetAllServices
impl Unpin for ApiDiscoveryResponseBodyGetAllServices
impl UnwindSafe for ApiDiscoveryResponseBodyGetAllServices
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