Type Alias NoExplicitInvocationContext

Source
pub type NoExplicitInvocationContext = ImplicitInvocationContext;
Expand description

The default strategy for discovering the current thread’s IPC buffer.

When the "state" feature is enabled, NoExplicitInvocationContext is an alias for ImplicitInvocationContext, which uses the IpcBuffer set by set_ipc_buffer. Otherwise, it is an alias for NoInvocationContext, which does not implement InvocationContext.

Aliased Type§

struct NoExplicitInvocationContext;

Implementations

Source§

impl ImplicitInvocationContext

Source

pub const fn new() -> Self

Trait Implementations

Source§

impl Clone for ImplicitInvocationContext

Source§

fn clone(&self) -> ImplicitInvocationContext

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ImplicitInvocationContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ImplicitInvocationContext

Source§

fn default() -> ImplicitInvocationContext

Returns the “default value” for a type. Read more
Source§

impl Hash for ImplicitInvocationContext

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given [Hasher]. Read more
Source§

impl InvocationContext for ImplicitInvocationContext

Source§

fn with_context<T>(&mut self, f: impl FnOnce(&mut IpcBuffer) -> T) -> T

Source§

impl PartialEq for ImplicitInvocationContext

Source§

fn eq(&self, other: &ImplicitInvocationContext) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for ImplicitInvocationContext

Source§

impl Eq for ImplicitInvocationContext

Source§

impl StructuralPartialEq for ImplicitInvocationContext