pub enum StreamingUseCase {
RealTimeDashboard,
BulkDataTransfer,
MobileApp,
ProgressiveWebApp,
IoTDevice,
LiveStreaming,
Custom(String),
}
Expand description
Supported streaming use cases
Variants§
RealTimeDashboard
Real-time dashboard updates requiring low latency
BulkDataTransfer
Bulk data transfer prioritizing throughput
MobileApp
Mobile application with network constraints
ProgressiveWebApp
Progressive web application balancing UX and performance
IoTDevice
IoT device streaming with power constraints
LiveStreaming
Live streaming with audience interaction
Custom(String)
Custom use case with specific requirements
Trait Implementations§
Source§impl Clone for StreamingUseCase
impl Clone for StreamingUseCase
Source§fn clone(&self) -> StreamingUseCase
fn clone(&self) -> StreamingUseCase
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 StreamingUseCase
impl Debug for StreamingUseCase
Source§impl PartialEq for StreamingUseCase
impl PartialEq for StreamingUseCase
impl StructuralPartialEq for StreamingUseCase
Auto Trait Implementations§
impl Freeze for StreamingUseCase
impl RefUnwindSafe for StreamingUseCase
impl Send for StreamingUseCase
impl Sync for StreamingUseCase
impl Unpin for StreamingUseCase
impl UnwindSafe for StreamingUseCase
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