pub struct StreamEntry {
pub stream_identifier: i32,
pub value: EmberValue,
}Expand description
A stream entry (for streaming parameter values).
Fields§
§stream_identifier: i32Stream identifier
value: EmberValueStream value
Implementations§
Source§impl StreamEntry
impl StreamEntry
Sourcepub fn new(stream_identifier: i32, value: EmberValue) -> Self
pub fn new(stream_identifier: i32, value: EmberValue) -> Self
Create a new stream entry.
Trait Implementations§
Source§impl Clone for StreamEntry
impl Clone for StreamEntry
Source§fn clone(&self) -> StreamEntry
fn clone(&self) -> StreamEntry
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 moreAuto Trait Implementations§
impl Freeze for StreamEntry
impl RefUnwindSafe for StreamEntry
impl Send for StreamEntry
impl Sync for StreamEntry
impl Unpin for StreamEntry
impl UnsafeUnpin for StreamEntry
impl UnwindSafe for StreamEntry
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