#[repr(C)]pub enum VSPluginConfigFlags {
Modifiable,
}Expand description
Options when loading a plugin.
Variants§
Modifiable
Allow functions to be added to the plugin object after the plugin loading phase. Mostly useful for Avisynth compatibility and other foreign plugin loaders.
Trait Implementations§
source§impl Clone for VSPluginConfigFlags
impl Clone for VSPluginConfigFlags
source§fn clone(&self) -> VSPluginConfigFlags
fn clone(&self) -> VSPluginConfigFlags
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 VSPluginConfigFlags
impl Debug for VSPluginConfigFlags
source§impl Hash for VSPluginConfigFlags
impl Hash for VSPluginConfigFlags
source§impl Ord for VSPluginConfigFlags
impl Ord for VSPluginConfigFlags
source§fn cmp(&self, other: &VSPluginConfigFlags) -> Ordering
fn cmp(&self, other: &VSPluginConfigFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<VSPluginConfigFlags> for VSPluginConfigFlags
impl PartialEq<VSPluginConfigFlags> for VSPluginConfigFlags
source§fn eq(&self, other: &VSPluginConfigFlags) -> bool
fn eq(&self, other: &VSPluginConfigFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<VSPluginConfigFlags> for VSPluginConfigFlags
impl PartialOrd<VSPluginConfigFlags> for VSPluginConfigFlags
source§fn partial_cmp(&self, other: &VSPluginConfigFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &VSPluginConfigFlags) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for VSPluginConfigFlags
impl Eq for VSPluginConfigFlags
impl StructuralEq for VSPluginConfigFlags
impl StructuralPartialEq for VSPluginConfigFlags
Auto Trait Implementations§
impl RefUnwindSafe for VSPluginConfigFlags
impl Send for VSPluginConfigFlags
impl Sync for VSPluginConfigFlags
impl Unpin for VSPluginConfigFlags
impl UnwindSafe for VSPluginConfigFlags
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