pub struct ListTypesResponse {
pub next_token: Option<String>,
pub types: Option<Vec<Type>>,
}Fields§
§next_token: Option<String>An identifier to be passed in the next request to this operation to return the next set of items in the list.
types: Option<Vec<Type>>The Type objects.
Trait Implementations§
Source§impl Clone for ListTypesResponse
impl Clone for ListTypesResponse
Source§fn clone(&self) -> ListTypesResponse
fn clone(&self) -> ListTypesResponse
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 ListTypesResponse
impl Debug for ListTypesResponse
Source§impl Default for ListTypesResponse
impl Default for ListTypesResponse
Source§fn default() -> ListTypesResponse
fn default() -> ListTypesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTypesResponse
impl<'de> Deserialize<'de> for ListTypesResponse
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 ListTypesResponse
impl PartialEq for ListTypesResponse
impl StructuralPartialEq for ListTypesResponse
Auto Trait Implementations§
impl Freeze for ListTypesResponse
impl RefUnwindSafe for ListTypesResponse
impl Send for ListTypesResponse
impl Sync for ListTypesResponse
impl Unpin for ListTypesResponse
impl UnwindSafe for ListTypesResponse
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