Skip to main content

WasiHttpNamed

Struct WasiHttpNamed 

Source
pub struct WasiHttpNamed<T>(/* private fields */);
Expand description

A helper struct which implements HasData for the wasi:http APIs when used in combination with named imports.

This structure is similar in purpose to WasiHttp and is used when using the named_imports module for wasi:http. This structure serves as the D type parameter for add_to_linker functions.

§Meaning of the T parameter

Here the T must be something that implements WasiHttpNamedView. The corresponding Data for this type is WasiCtxNamedView which internally will contain &mut T.

Effectively you’re going to implement WasiHttpNamedView for something in your embedding, and that’s the T you’ll fill in here.

§Examples

use wasmtime::component::{Linker, Component, ResourceTable};
use wasmtime::{Engine, Result};
use wasmtime_wasi::{NamedId, WasiCtxNamedView};
use wasmtime_wasi_http::{WasiHttpCtx, WasiHttpCtxView, WasiHttpNamed, WasiHttpNamedView};
use wasmtime_wasi_http::p2::bindings::named_imports;
use std::collections::HashMap;

struct MyStoreState {
    table: ResourceTable,
    states: HashMap<NamedId, WasiHttpCtx>,
}

fn main() -> Result<()> {
    let engine = Engine::default();
    let mut linker = Linker::new(&engine);
    let component = Component::new(&engine, "(component)")?;
    let mut name_map = HashMap::new();

    named_imports::wasi::http::outgoing_handler::add_to_linker::<MyStoreState, WasiHttpNamed<MyStoreState>>(
        &mut linker,
        &component,
        |name| {
            let len = name_map.len();
            Ok(NamedId(*name_map.entry(name.to_string()).or_insert(len)))
        },
        |state| WasiCtxNamedView(state),
    )?;
    Ok(())
}

impl WasiHttpNamedView for MyStoreState {
    fn http(&mut self, id: NamedId) -> WasiHttpCtxView<'_> {
        let ctx = self.states.get_mut(&id).expect("state for id");
        WasiHttpCtxView {
            ctx,
            table: &mut self.table,
            hooks: Default::default(),
        }
    }
}

Trait Implementations§

Source§

impl<T> HasData for WasiHttpNamed<T>

Source§

type Data<'a> = WasiCtxNamedView<'a, T>

The data associated with this trait implementation, chiefly used as a generic associated type to allow plumbing the 'a lifetime into the definition here. Read more
Source§

impl<T, U> HostRequestWithStore<U> for WasiHttpNamed<T>
where T: WasiHttpNamedView, U: 'static,

Available on crate feature p3 only.
Source§

fn new( store: Access<'_, U, Self>, id: NamedId, headers: Resource<Headers>, contents: Option<StreamReader<u8>>, trailers: FutureReader<Result<Option<Resource<Trailers>>, ErrorCode>>, options: Option<Resource<RequestOptions>>, ) -> Result<(Resource<Request>, FutureReader<Result<(), ErrorCode>>)>

Construct a new request with a default method of GET, and none values for path-with-query, scheme, and authority. Read more
Source§

fn consume_body( store: Access<'_, U, Self>, id: NamedId, req: Resource<Request>, fut: FutureReader<Result<(), ErrorCode>>, ) -> Result<(StreamReader<u8>, FutureReader<Result<Option<Resource<Trailers>>, ErrorCode>>)>

Get body of the Request. Read more
Source§

fn drop( store: Access<'_, U, Self>, id: NamedId, req: Resource<Request>, ) -> Result<()>

Source§

impl<T, U> HostResponseWithStore<U> for WasiHttpNamed<T>
where T: WasiHttpNamedView, U: 'static,

Available on crate feature p3 only.
Source§

fn new( store: Access<'_, U, Self>, id: NamedId, headers: Resource<Headers>, contents: Option<StreamReader<u8>>, trailers: FutureReader<Result<Option<Resource<Trailers>>, ErrorCode>>, ) -> Result<(Resource<Response>, FutureReader<Result<(), ErrorCode>>)>

Construct a new response, with a default status-code of 200. If a different status-code is needed, it must be set via the set-status-code method. Read more
Source§

fn consume_body( store: Access<'_, U, Self>, id: NamedId, res: Resource<Response>, fut: FutureReader<Result<(), ErrorCode>>, ) -> Result<(StreamReader<u8>, FutureReader<Result<Option<Resource<Trailers>>, ErrorCode>>)>

Get body of the Response. Read more
Source§

fn drop( store: Access<'_, U, Self>, id: NamedId, res: Resource<Response>, ) -> Result<()>

Source§

impl<T, U> HostWithStore<U> for WasiHttpNamed<T>
where T: WasiHttpNamedView, U: 'static,

Available on crate feature p3 only.
Source§

async fn send( store: &Accessor<U, Self>, id: NamedId, req: Resource<Request>, ) -> Result<Resource<Response>, TrappableError<ErrorCode>>

This function may be used to either send an outgoing request over the network or to forward it to another component.

Auto Trait Implementations§

§

impl<T> Freeze for WasiHttpNamed<T>
where PhantomData<fn() -> T>: Freeze,

§

impl<T> RefUnwindSafe for WasiHttpNamed<T>
where PhantomData<fn() -> T>: RefUnwindSafe,

§

impl<T> Send for WasiHttpNamed<T>
where PhantomData<fn() -> T>: Send,

§

impl<T> Sync for WasiHttpNamed<T>
where PhantomData<fn() -> T>: Sync,

§

impl<T> Unpin for WasiHttpNamed<T>
where PhantomData<fn() -> T>: Unpin,

§

impl<T> UnsafeUnpin for WasiHttpNamed<T>
where PhantomData<fn() -> T>: UnsafeUnpin,

§

impl<T> UnwindSafe for WasiHttpNamed<T>
where PhantomData<fn() -> T>: 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
§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<H, T> HostDescriptorWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostDescriptorWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostDescriptorWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostDirectoryEntryStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostDirectoryEntryStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostDirectoryEntryStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostErrorWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFieldsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFieldsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFieldsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFieldsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFutureIncomingResponseWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFutureIncomingResponseWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFutureTrailersWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostFutureTrailersWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingBodyWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingBodyWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingRequestWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingRequestWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingResponseWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostIncomingResponseWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostInputStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostInputStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostNetworkWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostNetworkWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingBodyWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingBodyWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingDatagramStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingRequestWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingRequestWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingResponseWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutgoingResponseWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutputStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostOutputStreamWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostPollableWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostPollableWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostRequestOptionsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostRequestOptionsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostRequestOptionsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostRequestOptionsWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResolveAddressStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResolveAddressStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResolveAddressStreamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResponseOutparamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostResponseOutparamWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTcpSocketWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTcpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostTcpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalInputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostTerminalOutputWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostUdpSocketWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostUdpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostUdpSocketWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + Send + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H
where H: HasData + HostErrorWithStore<T> + ?Sized,

Source§

impl<H, T> HostWithStore<T> for H

Source§

impl<H, T> HostWithStore<T> for H

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> MaybeSendSync for T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Pointee for T

Source§

type Pointer = u32

Source§

fn debug( pointer: <T as Pointee>::Pointer, f: &mut Formatter<'_>, ) -> Result<(), Error>

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more