pub struct ListDomainConfigurationsResponse {
pub domain_configurations: Option<Vec<DomainConfigurationSummary>>,
pub next_marker: Option<String>,
}Fields§
§domain_configurations: Option<Vec<DomainConfigurationSummary>>A list of objects that contain summary information about the user's domain configurations.
next_marker: Option<String>The marker for the next set of results.
Trait Implementations§
Source§impl Clone for ListDomainConfigurationsResponse
impl Clone for ListDomainConfigurationsResponse
Source§fn clone(&self) -> ListDomainConfigurationsResponse
fn clone(&self) -> ListDomainConfigurationsResponse
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 ListDomainConfigurationsResponse
impl Default for ListDomainConfigurationsResponse
Source§fn default() -> ListDomainConfigurationsResponse
fn default() -> ListDomainConfigurationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDomainConfigurationsResponse
impl<'de> Deserialize<'de> for ListDomainConfigurationsResponse
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 ListDomainConfigurationsResponse
impl PartialEq for ListDomainConfigurationsResponse
Source§fn eq(&self, other: &ListDomainConfigurationsResponse) -> bool
fn eq(&self, other: &ListDomainConfigurationsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListDomainConfigurationsResponse
Auto Trait Implementations§
impl Freeze for ListDomainConfigurationsResponse
impl RefUnwindSafe for ListDomainConfigurationsResponse
impl Send for ListDomainConfigurationsResponse
impl Sync for ListDomainConfigurationsResponse
impl Unpin for ListDomainConfigurationsResponse
impl UnwindSafe for ListDomainConfigurationsResponse
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