pub struct Params {
pub format: Option<Format>,
pub resource_type: ResourceType,
pub frame_width: u32,
pub frame_height: u32,
pub min_buffers: u32,
pub max_buffers: u32,
pub crop: Crop,
pub frame_rate: u32,
pub plane_formats: Vec<PlaneFormat>,
}
Expand description
Safe wrapper of virtio_video_params
.
Note that this struct doesn’t have a field corresponding to queue_type
in
virtio_video_params
. The type of queue should be stored by one that has an Params
instance.
Fields§
§format: Option<Format>
§resource_type: ResourceType
§frame_width: u32
§frame_height: u32
§min_buffers: u32
§max_buffers: u32
§crop: Crop
§frame_rate: u32
§plane_formats: Vec<PlaneFormat>
Implementations§
source§impl Params
impl Params
pub fn to_virtio_video_params( &self, queue_type: QueueType, ) -> virtio_video_params
pub fn to_virtio_video_params_ext( &self, queue_type: QueueType, ) -> virtio_video_params_ext
Trait Implementations§
source§impl TryFrom<virtio_video_params> for Params
impl TryFrom<virtio_video_params> for Params
§type Error = ReadCmdError
type Error = ReadCmdError
The type returned in the event of a conversion error.
source§impl TryFrom<virtio_video_params_ext> for Params
impl TryFrom<virtio_video_params_ext> for Params
§type Error = ReadCmdError
type Error = ReadCmdError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.