pub struct StreamSubscribeParams {
pub topics: Vec<String>,
pub cursor: Option<String>,
pub replay_limit: Option<u16>,
pub filters: Option<Value>,
}Fields§
§topics: Vec<String>§cursor: Option<String>§replay_limit: Option<u16>§filters: Option<Value>Trait Implementations§
Source§impl Clone for StreamSubscribeParams
impl Clone for StreamSubscribeParams
Source§fn clone(&self) -> StreamSubscribeParams
fn clone(&self) -> StreamSubscribeParams
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 StreamSubscribeParams
impl Debug for StreamSubscribeParams
Source§impl<'de> Deserialize<'de> for StreamSubscribeParams
impl<'de> Deserialize<'de> for StreamSubscribeParams
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 StreamSubscribeParams
impl RefUnwindSafe for StreamSubscribeParams
impl Send for StreamSubscribeParams
impl Sync for StreamSubscribeParams
impl Unpin for StreamSubscribeParams
impl UnsafeUnpin for StreamSubscribeParams
impl UnwindSafe for StreamSubscribeParams
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