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