pub struct PipelineState {
pub pads: Vec<PadState>,
video_entity: VideoState,
}
Expand description
The configuration state of the entire pipeline, stored in a way easily digestible to the kernel APIs.
Fields§
§pads: Vec<PadState>
Ordered list of traversed pads, from the sensor to the video entity, not including the video entity pad.
video_entity: VideoState
The final video entity pad.
Implementations§
Trait Implementations§
Source§impl Clone for PipelineState
impl Clone for PipelineState
Source§fn clone(&self) -> PipelineState
fn clone(&self) -> PipelineState
Returns a copy 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 PipelineState
impl Debug for PipelineState
Source§impl Hash for PipelineState
impl Hash for PipelineState
Source§impl PartialEq for PipelineState
impl PartialEq for PipelineState
impl Eq for PipelineState
impl StructuralPartialEq for PipelineState
Auto Trait Implementations§
impl Freeze for PipelineState
impl RefUnwindSafe for PipelineState
impl Send for PipelineState
impl Sync for PipelineState
impl Unpin for PipelineState
impl UnwindSafe for PipelineState
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