pub struct BridgePollParams {
pub agent_id: Option<String>,
pub machine_id: Option<String>,
pub timeout: Option<i64>,
}Expand description
Query and header parameters for bridgePoll.
Fields§
§agent_id: Option<String>§machine_id: Option<String>§timeout: Option<i64>Server-side long-poll timeout override (ms).
Trait Implementations§
Source§impl Clone for BridgePollParams
impl Clone for BridgePollParams
Source§fn clone(&self) -> BridgePollParams
fn clone(&self) -> BridgePollParams
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 BridgePollParams
impl Debug for BridgePollParams
Source§impl Default for BridgePollParams
impl Default for BridgePollParams
Source§fn default() -> BridgePollParams
fn default() -> BridgePollParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BridgePollParams
impl<'de> Deserialize<'de> for BridgePollParams
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 BridgePollParams
impl PartialEq for BridgePollParams
Source§impl Serialize for BridgePollParams
impl Serialize for BridgePollParams
impl StructuralPartialEq for BridgePollParams
Auto Trait Implementations§
impl Freeze for BridgePollParams
impl RefUnwindSafe for BridgePollParams
impl Send for BridgePollParams
impl Sync for BridgePollParams
impl Unpin for BridgePollParams
impl UnsafeUnpin for BridgePollParams
impl UnwindSafe for BridgePollParams
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