pub struct ScriptModuleParamArray<'a> { /* private fields */ }Available on crate feature
module only.Expand description
スクリプトモジュールの引数として渡される配列。
Implementations§
Source§impl<'a> ScriptModuleParamArray<'a>
impl<'a> ScriptModuleParamArray<'a>
Trait Implementations§
Source§impl Debug for ScriptModuleParamArray<'_>
impl Debug for ScriptModuleParamArray<'_>
Source§impl<'a> FromScriptModuleParam<'a> for ScriptModuleParamArray<'a>
impl<'a> FromScriptModuleParam<'a> for ScriptModuleParamArray<'a>
fn from_param(param: &'a ScriptModuleCallHandle, index: usize) -> Option<Self>
Auto Trait Implementations§
impl<'a> Freeze for ScriptModuleParamArray<'a>
impl<'a> RefUnwindSafe for ScriptModuleParamArray<'a>
impl<'a> !Send for ScriptModuleParamArray<'a>
impl<'a> !Sync for ScriptModuleParamArray<'a>
impl<'a> Unpin for ScriptModuleParamArray<'a>
impl<'a> UnwindSafe for ScriptModuleParamArray<'a>
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