pub struct init { /* private fields */ }Trait Implementations§
Source§impl FnInfo for init
impl FnInfo for init
Source§type FnKind = FnKindReducer
type FnKind = FnKindReducer
The function kind, which will cause scheduled tables to accept reducers.
Source§const LIFECYCLE: Option<LifecycleReducer>
const LIFECYCLE: Option<LifecycleReducer>
The lifecycle of the function, if there is one.
Source§const ARG_NAMES: &'static [Option<&'static str>]
const ARG_NAMES: &'static [Option<&'static str>]
A description of the parameter names of the function.
Source§type Invoke = fn(ReducerContext, &[u8]) -> Result<(), Box<str>>
type Invoke = fn(ReducerContext, &[u8]) -> Result<(), Box<str>>
The type of function to invoke.
Source§fn return_type(_ts: &mut impl TypespaceBuilder) -> Option<AlgebraicType>
fn return_type(_ts: &mut impl TypespaceBuilder) -> Option<AlgebraicType>
The return type of this function.
Currently only implemented for views.
Auto Trait Implementations§
impl Freeze for init
impl RefUnwindSafe for init
impl Send for init
impl Sync for init
impl Unpin for init
impl UnsafeUnpin for init
impl UnwindSafe for init
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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