pub struct ListThreadsRequest {
pub directory_prefix: Option<String>,
pub runtime_id: Option<String>,
pub limit: Option<usize>,
pub cursor: Option<String>,
pub archived: Option<bool>,
pub search_term: Option<String>,
}Fields§
§directory_prefix: Option<String>§runtime_id: Option<String>§limit: Option<usize>§cursor: Option<String>§archived: Option<bool>§search_term: Option<String>Trait Implementations§
Source§impl Debug for ListThreadsRequest
impl Debug for ListThreadsRequest
Source§impl<'de> Deserialize<'de> for ListThreadsRequest
impl<'de> Deserialize<'de> for ListThreadsRequest
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
Auto Trait Implementations§
impl Freeze for ListThreadsRequest
impl RefUnwindSafe for ListThreadsRequest
impl Send for ListThreadsRequest
impl Sync for ListThreadsRequest
impl Unpin for ListThreadsRequest
impl UnsafeUnpin for ListThreadsRequest
impl UnwindSafe for ListThreadsRequest
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