pub struct SubPlugin<T> { /* private fields */ }Available on crate feature
generic only.Expand description
プラグインの初期化状態を管理するためのハンドル。
Implementations§
Source§impl<T> SubPlugin<T>
impl<T> SubPlugin<T>
Sourcepub fn new_input_plugin(info: AviUtl2Info) -> AnyResult<Self>where
T: InputPlugin + InputSingleton + 'static,
Available on crate feature input only.
pub fn new_input_plugin(info: AviUtl2Info) -> AnyResult<Self>where
T: InputPlugin + InputSingleton + 'static,
input only.入力プラグインの新しいインスタンスを作成します。
Source§impl<T> SubPlugin<T>
impl<T> SubPlugin<T>
Sourcepub fn new_output_plugin(info: AviUtl2Info) -> AnyResult<Self>where
T: OutputPlugin + OutputSingleton + 'static,
Available on crate feature output only.
pub fn new_output_plugin(info: AviUtl2Info) -> AnyResult<Self>where
T: OutputPlugin + OutputSingleton + 'static,
output only.出力プラグインの新しいインスタンスを作成します。
Source§impl<T> SubPlugin<T>
impl<T> SubPlugin<T>
Sourcepub fn new_filter_plugin(info: AviUtl2Info) -> AnyResult<Self>where
T: FilterPlugin + FilterSingleton + 'static,
Available on crate feature filter only.
pub fn new_filter_plugin(info: AviUtl2Info) -> AnyResult<Self>where
T: FilterPlugin + FilterSingleton + 'static,
filter only.フィルタープラグインの新しいインスタンスを作成します。
Source§impl<T> SubPlugin<T>
impl<T> SubPlugin<T>
Sourcepub fn new_script_module(info: AviUtl2Info) -> AnyResult<Self>where
T: ScriptModule + ScriptModuleSingleton + 'static,
Available on crate feature module only.
pub fn new_script_module(info: AviUtl2Info) -> AnyResult<Self>where
T: ScriptModule + ScriptModuleSingleton + 'static,
module only.スクリプトモジュールの新しいインスタンスを作成します。
Auto Trait Implementations§
impl<T> Freeze for SubPlugin<T>
impl<T> RefUnwindSafe for SubPlugin<T>where
T: RefUnwindSafe,
impl<T> Send for SubPlugin<T>where
T: Send,
impl<T> Sync for SubPlugin<T>where
T: Sync,
impl<T> Unpin for SubPlugin<T>where
T: Unpin,
impl<T> UnwindSafe for SubPlugin<T>where
T: UnwindSafe,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more