pub struct ListAssistantsResponse {
pub object: String,
pub data: Vec<AssistantObject>,
pub first_id: Option<String>,
pub last_id: Option<String>,
pub has_more: bool,
}
Fields§
§object: String
§data: Vec<AssistantObject>
§first_id: Option<String>
§last_id: Option<String>
§has_more: bool
Trait Implementations§
Source§impl Clone for ListAssistantsResponse
impl Clone for ListAssistantsResponse
Source§fn clone(&self) -> ListAssistantsResponse
fn clone(&self) -> ListAssistantsResponse
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 ListAssistantsResponse
impl Debug for ListAssistantsResponse
Source§impl Default for ListAssistantsResponse
impl Default for ListAssistantsResponse
Source§fn default() -> ListAssistantsResponse
fn default() -> ListAssistantsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAssistantsResponse
impl<'de> Deserialize<'de> for ListAssistantsResponse
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 ListAssistantsResponse
impl PartialEq for ListAssistantsResponse
Source§impl Serialize for ListAssistantsResponse
impl Serialize for ListAssistantsResponse
impl StructuralPartialEq for ListAssistantsResponse
Auto Trait Implementations§
impl Freeze for ListAssistantsResponse
impl RefUnwindSafe for ListAssistantsResponse
impl Send for ListAssistantsResponse
impl Sync for ListAssistantsResponse
impl Unpin for ListAssistantsResponse
impl UnwindSafe for ListAssistantsResponse
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