#[repr(C)]pub enum VSPluginConfigFlags {
Modifiable = 1,
}
Expand description
Options when loading a plugin.
Variants§
Modifiable = 1
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 BitOr for VSPluginConfigFlags
impl BitOr for VSPluginConfigFlags
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 for VSPluginConfigFlags
impl PartialEq for VSPluginConfigFlags
Source§impl PartialOrd for VSPluginConfigFlags
impl PartialOrd for VSPluginConfigFlags
impl Copy for VSPluginConfigFlags
impl Eq for VSPluginConfigFlags
impl StructuralPartialEq for VSPluginConfigFlags
Auto Trait Implementations§
impl Freeze for VSPluginConfigFlags
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