pub struct ListDimensionsResponse {
pub dimension_names: Option<Vec<String>>,
pub next_token: Option<String>,
}Fields§
§dimension_names: Option<Vec<String>>A list of the names of the defined dimensions. Use DescribeDimension to get details for a dimension.
next_token: Option<String>A token that can be used to retrieve the next set of results, or null if there are no additional results.
Trait Implementations§
Source§impl Clone for ListDimensionsResponse
impl Clone for ListDimensionsResponse
Source§fn clone(&self) -> ListDimensionsResponse
fn clone(&self) -> ListDimensionsResponse
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 Debug for ListDimensionsResponse
impl Debug for ListDimensionsResponse
Source§impl Default for ListDimensionsResponse
impl Default for ListDimensionsResponse
Source§fn default() -> ListDimensionsResponse
fn default() -> ListDimensionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDimensionsResponse
impl<'de> Deserialize<'de> for ListDimensionsResponse
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 ListDimensionsResponse
impl PartialEq for ListDimensionsResponse
impl StructuralPartialEq for ListDimensionsResponse
Auto Trait Implementations§
impl Freeze for ListDimensionsResponse
impl RefUnwindSafe for ListDimensionsResponse
impl Send for ListDimensionsResponse
impl Sync for ListDimensionsResponse
impl Unpin for ListDimensionsResponse
impl UnwindSafe for ListDimensionsResponse
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