Skip to main content

ProbeEndpoint

Struct ProbeEndpoint 

Source
pub struct ProbeEndpoint<P> { /* private fields */ }
Expand description

Typed endpoint backed by one conformance provider.

Implementations§

Source§

impl<P: ProbeProvider> ProbeEndpoint<P>

Source

pub fn new(provider: P) -> Self

Trait Implementations§

Source§

impl<P: Debug> Debug for ProbeEndpoint<P>

Source§

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

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

impl<P: ProbeProvider> NativeRequestEndpoint for ProbeEndpoint<P>

Source§

fn capability_id(&self) -> &'static str

Stable Capability series identity.
Source§

fn descriptor_version(&self) -> &'static str

Exact Descriptor version implemented by this endpoint.
Source§

fn operations(&self) -> &'static [&'static str]

Exact stable Operation names implemented by this endpoint.
Source§

fn invoke( &self, operation: &str, request: Box<dyn Any>, context: InvocationContext, ) -> LocalBoxFuture<'static, Result<Result<Box<dyn Any>, Box<dyn Any>>, RuntimeFailure>>

Dispatches one operation without serializing its typed Rust payload.

Auto Trait Implementations§

§

impl<P> !Send for ProbeEndpoint<P>

§

impl<P> !Sync for ProbeEndpoint<P>

§

impl<P> Freeze for ProbeEndpoint<P>
where Rc<P>: Freeze,

§

impl<P> RefUnwindSafe for ProbeEndpoint<P>
where Rc<P>: RefUnwindSafe,

§

impl<P> Unpin for ProbeEndpoint<P>
where Rc<P>: Unpin,

§

impl<P> UnsafeUnpin for ProbeEndpoint<P>
where Rc<P>: UnsafeUnpin,

§

impl<P> UnwindSafe for ProbeEndpoint<P>
where Rc<P>: UnwindSafe,

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.