[][src]Struct buildkit_proto::moby::buildkit::v1::frontend::server::LlbBridgeServer

pub struct LlbBridgeServer<T> { /* fields omitted */ }

Methods

impl<T> LlbBridgeServer<T> where
    T: LlbBridge
[src]

pub fn new(llb_bridge: T) -> Self[src]

Trait Implementations

impl<T: Clone> Clone for LlbBridgeServer<T>[src]

impl<T: Debug> Debug for LlbBridgeServer<T>[src]

impl<T> Service<Request<BoxBody>> for LlbBridgeServer<T> where
    T: LlbBridge
[src]

type Response = Response<ResponseBody<T>>

Responses given by the service.

type Error = Never

Errors produced by the service.

type Future = ResponseFuture<T>

The future response value.

impl<T> Service<()> for LlbBridgeServer<T> where
    T: LlbBridge
[src]

type Response = Self

Responses given by the service.

type Error = Never

Errors produced by the service.

type Future = FutureResult<Self::Response, Self::Error>

The future response value.

Auto Trait Implementations

impl<T> Sync for LlbBridgeServer<T> where
    T: Sync

impl<T> Send for LlbBridgeServer<T> where
    T: Send

impl<T> Unpin for LlbBridgeServer<T> where
    T: Unpin

impl<T> UnwindSafe for LlbBridgeServer<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for LlbBridgeServer<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T, ReqBody, ResBody> GrpcService<ReqBody> for T where
    ResBody: Body + Body,
    T: Service<Request<ReqBody>, Response = Response<ResBody>>,
    <T as Service<Request<ReqBody>>>::Error: Into<Box<dyn Error + 'static + Sync + Send>>, 
[src]

type ResponseBody = ResBody

Response body type

type Future = <T as Service<Request<ReqBody>>>::Future

Response future

type Error = <T as Service<Request<ReqBody>>>::Error

Error type

impl<M, S, Target, Request> MakeService<Target, Request> for M where
    M: Service<Target, Response = S>,
    S: Service<Request>, 
[src]

type Response = <S as Service<Request>>::Response

Responses given by the service

type Error = <S as Service<Request>>::Error

Errors produced by the service

type Service = S

The Service value created by this factory

type MakeError = <M as Service<Target>>::Error

Errors produced while building a service.

type Future = <M as Service<Target>>::Future

The future of the Service instance.