pub struct ListPresetsResponse {
pub next_page_token: Option<String>,
pub presets: Option<Vec<Preset>>,
}
Expand description
The ListPresetsResponse
structure.
Fields§
§next_page_token: Option<String>
A value that you use to access the second and subsequent pages of results, if any. When the presets fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
presets: Option<Vec<Preset>>
An array of Preset
objects.
Trait Implementations§
Source§impl Clone for ListPresetsResponse
impl Clone for ListPresetsResponse
Source§fn clone(&self) -> ListPresetsResponse
fn clone(&self) -> ListPresetsResponse
Returns a copy 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 ListPresetsResponse
impl Debug for ListPresetsResponse
Source§impl Default for ListPresetsResponse
impl Default for ListPresetsResponse
Source§fn default() -> ListPresetsResponse
fn default() -> ListPresetsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPresetsResponse
impl<'de> Deserialize<'de> for ListPresetsResponse
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 ListPresetsResponse
impl PartialEq for ListPresetsResponse
impl StructuralPartialEq for ListPresetsResponse
Auto Trait Implementations§
impl Freeze for ListPresetsResponse
impl RefUnwindSafe for ListPresetsResponse
impl Send for ListPresetsResponse
impl Sync for ListPresetsResponse
impl Unpin for ListPresetsResponse
impl UnwindSafe for ListPresetsResponse
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