pub struct ListTracesParams {
pub limit: Option<u32>,
pub cursor: Option<String>,
pub session_id: Option<String>,
pub agent_id: Option<String>,
pub owner_user_id: Option<String>,
pub started_after: Option<String>,
pub started_before: Option<String>,
}Fields§
§limit: Option<u32>§cursor: Option<String>§session_id: Option<String>§agent_id: Option<String>§owner_user_id: Option<String>§started_after: Option<String>§started_before: Option<String>Trait Implementations§
Source§impl Clone for ListTracesParams
impl Clone for ListTracesParams
Source§fn clone(&self) -> ListTracesParams
fn clone(&self) -> ListTracesParams
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 ListTracesParams
impl Debug for ListTracesParams
Source§impl Default for ListTracesParams
impl Default for ListTracesParams
Source§fn default() -> ListTracesParams
fn default() -> ListTracesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTracesParams
impl<'de> Deserialize<'de> for ListTracesParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListTracesParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ListTracesParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ListTracesParams
impl Serialize for ListTracesParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ListTracesParams
impl RefUnwindSafe for ListTracesParams
impl Send for ListTracesParams
impl Sync for ListTracesParams
impl Unpin for ListTracesParams
impl UnsafeUnpin for ListTracesParams
impl UnwindSafe for ListTracesParams
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