pub struct BatchGenerateFramesCommand {
pub session_id: SessionIdDto,
pub priority_threshold: PriorityDto,
pub max_frames: usize,
}
Expand description
Batch generate frames across multiple streams with priority
Fields§
§session_id: SessionIdDto
§priority_threshold: PriorityDto
§max_frames: usize
Trait Implementations§
Source§impl Clone for BatchGenerateFramesCommand
impl Clone for BatchGenerateFramesCommand
Source§fn clone(&self) -> BatchGenerateFramesCommand
fn clone(&self) -> BatchGenerateFramesCommand
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<R, P> CommandHandler<BatchGenerateFramesCommand, Vec<Frame>> for SessionCommandHandler<R, P>
impl<R, P> CommandHandler<BatchGenerateFramesCommand, Vec<Frame>> for SessionCommandHandler<R, P>
Source§impl Debug for BatchGenerateFramesCommand
impl Debug for BatchGenerateFramesCommand
Source§impl<'de> Deserialize<'de> for BatchGenerateFramesCommand
impl<'de> Deserialize<'de> for BatchGenerateFramesCommand
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 BatchGenerateFramesCommand
impl RefUnwindSafe for BatchGenerateFramesCommand
impl Send for BatchGenerateFramesCommand
impl Sync for BatchGenerateFramesCommand
impl Unpin for BatchGenerateFramesCommand
impl UnwindSafe for BatchGenerateFramesCommand
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