#[repr(C)]pub struct AVFilterPadParams {
pub label: *mut c_char,
}展开描述
Parameters of a filter’s input or output pad.
Created as a child of AVFilterParams by avfilter_graph_segment_parse(). Freed in avfilter_graph_segment_free().
Fields§
§label: *mut c_charAn av_malloc()’ed string containing the pad label.
May be av_free()’d and set to NULL by the caller, in which case this pad will be treated as unlabeled for linking. May also be replaced by another av_malloc()’ed string.
trait 实现§
源代码§impl Clone for AVFilterPadParams
impl Clone for AVFilterPadParams
源代码§fn clone(&self) -> AVFilterPadParams
fn clone(&self) -> AVFilterPadParams
Returns a duplicate of the value. 阅读更多
1.0.0 · 源代码§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
从
source 执行拷贝赋值。 阅读更多源代码§impl Debug for AVFilterPadParams
impl Debug for AVFilterPadParams
源代码§impl PartialEq for AVFilterPadParams
impl PartialEq for AVFilterPadParams
impl Copy for AVFilterPadParams
impl Eq for AVFilterPadParams
impl StructuralPartialEq for AVFilterPadParams
自动 trait 实现§
impl Freeze for AVFilterPadParams
impl RefUnwindSafe for AVFilterPadParams
impl !Send for AVFilterPadParams
impl !Sync for AVFilterPadParams
impl Unpin for AVFilterPadParams
impl UnsafeUnpin for AVFilterPadParams
impl UnwindSafe for AVFilterPadParams
blanket 实现§
源代码§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
源代码§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
从拥有的值可变地借用。 阅读更多