Struct tower::make::Shared[][src]

pub struct Shared<S> { /* fields omitted */ }
This is supported on crate feature make only.

A MakeService that produces services by cloning an inner service.

Example

use tower::make::{MakeService, Shared};
use tower::buffer::Buffer;
use tower::Service;
use futures::future::{Ready, ready};

// An example connection type
struct Connection {}

// An example request type
struct Request {}

// An example response type
struct Response {}

// Some service that doesn't implement `Clone`
struct MyService;

impl Service<Request> for MyService {
    type Response = Response;
    type Error = Infallible;
    type Future = Ready<Result<Response, Infallible>>;

    fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
        Poll::Ready(Ok(()))
    }

    fn call(&mut self, req: Request) -> Self::Future {
        ready(Ok(Response {}))
    }
}

// Example function that runs a service by accepting new connections and using
// `Make` to create new services that might be bound to the connection.
//
// This is similar to what you might find in hyper.
async fn serve_make_service<Make>(make: Make)
where
    Make: MakeService<Connection, Request>
{
    // ...
}

// Our service
let svc = MyService;

// Make it `Clone` by putting a channel in front
let buffered = Buffer::new(svc, 1024);

// Convert it into a `MakeService`
let make = Shared::new(buffered);

// Run the service and just ignore the `Connection`s as `MyService` doesn't need them
serve_make_service(make).await;

Implementations

impl<S> Shared<S>[src]

pub fn new(service: S) -> Self[src]

Create a new Shared from a service.

Trait Implementations

impl<S: Clone> Clone for Shared<S>[src]

impl<S: Copy> Copy for Shared<S>[src]

impl<S: Debug> Debug for Shared<S>[src]

impl<S, T> Service<T> for Shared<S> where
    S: Clone
[src]

type Response = S

Responses given by the service.

type Error = Infallible

Errors produced by the service.

type Future = SharedFuture<S>

The future response value.

Auto Trait Implementations

impl<S> RefUnwindSafe for Shared<S> where
    S: RefUnwindSafe

impl<S> Send for Shared<S> where
    S: Send

impl<S> Sync for Shared<S> where
    S: Sync

impl<S> Unpin for Shared<S> where
    S: Unpin

impl<S> UnwindSafe for Shared<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,