pub struct ListMissionsParams {
pub session_id: Option<String>,
pub limit: Option<i64>,
}Expand description
Query and header parameters for listMissions.
Fields§
§session_id: Option<String>Scope to one chat session — a cheaper scan than the tenant-wide list.
limit: Option<i64>Capped at 200; a non-numeric or non-positive value falls back to 50.
Trait Implementations§
Source§impl Clone for ListMissionsParams
impl Clone for ListMissionsParams
Source§fn clone(&self) -> ListMissionsParams
fn clone(&self) -> ListMissionsParams
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 ListMissionsParams
impl Debug for ListMissionsParams
Source§impl Default for ListMissionsParams
impl Default for ListMissionsParams
Source§fn default() -> ListMissionsParams
fn default() -> ListMissionsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListMissionsParams
impl<'de> Deserialize<'de> for ListMissionsParams
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 ListMissionsParams
impl PartialEq for ListMissionsParams
Source§impl Serialize for ListMissionsParams
impl Serialize for ListMissionsParams
impl StructuralPartialEq for ListMissionsParams
Auto Trait Implementations§
impl Freeze for ListMissionsParams
impl RefUnwindSafe for ListMissionsParams
impl Send for ListMissionsParams
impl Sync for ListMissionsParams
impl Unpin for ListMissionsParams
impl UnsafeUnpin for ListMissionsParams
impl UnwindSafe for ListMissionsParams
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