pub struct client_disconnected { /* private fields */ }Trait Implementations§
Source§impl FnInfo for client_disconnected
impl FnInfo for client_disconnected
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 client_disconnected
impl RefUnwindSafe for client_disconnected
impl Send for client_disconnected
impl Sync for client_disconnected
impl Unpin for client_disconnected
impl UnsafeUnpin for client_disconnected
impl UnwindSafe for client_disconnected
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