pub struct AiMultipleAgentResponse {
pub limit: Option<i64>,
pub next_marker: Option<Option<String>>,
pub prev_marker: Option<Option<String>>,
pub entries: Vec<AiSingleAgentResponseFull>,
}Fields§
§limit: Option<i64>§next_marker: Option<Option<String>>§prev_marker: Option<Option<String>>§entries: Vec<AiSingleAgentResponseFull>Trait Implementations§
Source§impl Clone for AiMultipleAgentResponse
impl Clone for AiMultipleAgentResponse
Source§fn clone(&self) -> AiMultipleAgentResponse
fn clone(&self) -> AiMultipleAgentResponse
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 AiMultipleAgentResponse
impl Debug for AiMultipleAgentResponse
Source§impl Default for AiMultipleAgentResponse
impl Default for AiMultipleAgentResponse
Source§fn default() -> AiMultipleAgentResponse
fn default() -> AiMultipleAgentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiMultipleAgentResponse
impl<'de> Deserialize<'de> for AiMultipleAgentResponse
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 AiMultipleAgentResponse
impl PartialEq for AiMultipleAgentResponse
Source§impl Serialize for AiMultipleAgentResponse
impl Serialize for AiMultipleAgentResponse
impl StructuralPartialEq for AiMultipleAgentResponse
Auto Trait Implementations§
impl Freeze for AiMultipleAgentResponse
impl RefUnwindSafe for AiMultipleAgentResponse
impl Send for AiMultipleAgentResponse
impl Sync for AiMultipleAgentResponse
impl Unpin for AiMultipleAgentResponse
impl UnsafeUnpin for AiMultipleAgentResponse
impl UnwindSafe for AiMultipleAgentResponse
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