pub struct ListIntentsResponse {
pub data: Vec<IntentResponse>,
pub next_cursor: Option<String>,
}Expand description
ListIntentsResponse
JSON schema
{
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IntentResponse"
}
},
"next_cursor": {
"type": "string"
}
}
}Fields§
§data: Vec<IntentResponse>§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for ListIntentsResponse
impl Clone for ListIntentsResponse
Source§fn clone(&self) -> ListIntentsResponse
fn clone(&self) -> ListIntentsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListIntentsResponse
impl Debug for ListIntentsResponse
Source§impl<'de> Deserialize<'de> for ListIntentsResponse
impl<'de> Deserialize<'de> for ListIntentsResponse
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<&ListIntentsResponse> for ListIntentsResponse
impl From<&ListIntentsResponse> for ListIntentsResponse
Source§fn from(value: &ListIntentsResponse) -> Self
fn from(value: &ListIntentsResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListIntentsResponse
impl RefUnwindSafe for ListIntentsResponse
impl Send for ListIntentsResponse
impl Sync for ListIntentsResponse
impl Unpin for ListIntentsResponse
impl UnsafeUnpin for ListIntentsResponse
impl UnwindSafe for ListIntentsResponse
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