pub struct PeriodicEventStreamParams {
pub custom_data: Option<CustomData>,
pub interval: Option<i64>,
pub values: Option<i64>,
}Fields§
§custom_data: Option<CustomData>§interval: Option<i64>Time in seconds after which stream data is sent.
values: Option<i64>Number of items to be sent together in stream.
Trait Implementations§
Source§impl Clone for PeriodicEventStreamParams
impl Clone for PeriodicEventStreamParams
Source§fn clone(&self) -> PeriodicEventStreamParams
fn clone(&self) -> PeriodicEventStreamParams
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 PeriodicEventStreamParams
impl Debug for PeriodicEventStreamParams
impl Eq for PeriodicEventStreamParams
impl StructuralPartialEq for PeriodicEventStreamParams
Auto Trait Implementations§
impl Freeze for PeriodicEventStreamParams
impl RefUnwindSafe for PeriodicEventStreamParams
impl Send for PeriodicEventStreamParams
impl Sync for PeriodicEventStreamParams
impl Unpin for PeriodicEventStreamParams
impl UnsafeUnpin for PeriodicEventStreamParams
impl UnwindSafe for PeriodicEventStreamParams
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