Skip to main content

MODULE_INFO

Struct MODULE_INFO 

Source
#[repr(C)]
pub struct MODULE_INFO { pub type: i32, pub name: LPCWSTR, pub information: LPCWSTR, }
Expand description

モジュール情報構造体

Fields§

§type: i32§name: LPCWSTR§information: LPCWSTR

Implementations§

Source§

impl MODULE_INFO

Source

pub const TYPE_SCRIPT_FILTER: i32 = 1

フィルタスクリプト

Source

pub const TYPE_SCRIPT_OBJECT: i32 = 2

オブジェクトスクリプト

Source

pub const TYPE_SCRIPT_CAMERA: i32 = 3

カメラスクリプト

Source

pub const TYPE_SCRIPT_TRACK: i32 = 4

トラックバースクリプト

Source

pub const TYPE_SCRIPT_MODULE: i32 = 5

スクリプトモジュール

Source

pub const TYPE_PLUGIN_INPUT: i32 = 6

入力プラグイン

Source

pub const TYPE_PLUGIN_OUTPUT: i32 = 7

出力プラグイン

Source

pub const TYPE_PLUGIN_FILTER: i32 = 8

フィルタプラグイン

Source

pub const TYPE_PLUGIN_COMMON: i32 = 9

汎用プラグイン

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.