pub struct ListResponse {
pub next_page_token: Option<String>,
}
Expand description
ListResponse
JSON schema
{
"type": "object",
"properties": {
"nextPageToken": {
"description": "The token for the next page of items, if any.",
"examples": [
"eyJsYXN0X2lkIjogImFiYzEyMyIsICJ0aW1lc3RhbXAiOiAxNzA3ODIzNzAxfQ=="
],
"type": "string"
}
}
}
Fields§
§next_page_token: Option<String>
The token for the next page of items, if any.
Implementations§
Source§impl ListResponse
impl ListResponse
pub fn builder() -> ListResponse
Trait Implementations§
Source§impl Clone for ListResponse
impl Clone for ListResponse
Source§fn clone(&self) -> ListResponse
fn clone(&self) -> ListResponse
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 ListResponse
impl Debug for ListResponse
Source§impl Default for ListResponse
impl Default for ListResponse
Source§impl<'de> Deserialize<'de> for ListResponse
impl<'de> Deserialize<'de> for ListResponse
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 From<&ListResponse> for ListResponse
impl From<&ListResponse> for ListResponse
Source§fn from(value: &ListResponse) -> Self
fn from(value: &ListResponse) -> Self
Converts to this type from the input type.
Source§impl From<ListResponse> for ListResponse
impl From<ListResponse> for ListResponse
Source§fn from(value: ListResponse) -> Self
fn from(value: ListResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for ListResponse
impl Serialize for ListResponse
Source§impl TryFrom<ListResponse> for ListResponse
impl TryFrom<ListResponse> for ListResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ListResponse) -> Result<Self, ConversionError>
fn try_from(value: ListResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ListResponse
impl RefUnwindSafe for ListResponse
impl Send for ListResponse
impl Sync for ListResponse
impl Unpin for ListResponse
impl UnwindSafe for ListResponse
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