pub struct InteractionsGetParams {
pub stream: Option<bool>,
pub last_event_id: Option<String>,
pub api_version: Option<String>,
}Expand description
Query parameters for GET /interactions/{id}
Fields§
§stream: Option<bool>Whether to stream the response
last_event_id: Option<String>Last event ID for resuming a stream
api_version: Option<String>API version
Trait Implementations§
Source§impl Clone for InteractionsGetParams
impl Clone for InteractionsGetParams
Source§fn clone(&self) -> InteractionsGetParams
fn clone(&self) -> InteractionsGetParams
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 InteractionsGetParams
impl Debug for InteractionsGetParams
Source§impl Default for InteractionsGetParams
impl Default for InteractionsGetParams
Source§fn default() -> InteractionsGetParams
fn default() -> InteractionsGetParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InteractionsGetParams
impl<'de> Deserialize<'de> for InteractionsGetParams
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 InteractionsGetParams
impl RefUnwindSafe for InteractionsGetParams
impl Send for InteractionsGetParams
impl Sync for InteractionsGetParams
impl Unpin for InteractionsGetParams
impl UnsafeUnpin for InteractionsGetParams
impl UnwindSafe for InteractionsGetParams
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