Struct conjure_codegen::example_types::another::TestServiceEndpoints
source · [−]pub struct TestServiceEndpoints<T>(_);
Implementations
sourceimpl<T> TestServiceEndpoints<T>
impl<T> TestServiceEndpoints<T>
sourcepub fn new(handler: T) -> TestServiceEndpoints<T>
pub fn new(handler: T) -> TestServiceEndpoints<T>
Creates a new resource.
Trait Implementations
sourceimpl<T, I, O> AsyncService<I, O> for TestServiceEndpoints<T> where
T: AsyncTestService<I, O> + 'static + Sync + Send,
I: Stream<Item = Result<Bytes, Error>> + Sync + Send,
impl<T, I, O> AsyncService<I, O> for TestServiceEndpoints<T> where
T: AsyncTestService<I, O> + 'static + Sync + Send,
I: Stream<Item = Result<Bytes, Error>> + Sync + Send,
sourceimpl<T, I, O> Service<I, O> for TestServiceEndpoints<T> where
T: TestService<I, O> + 'static + Sync + Send,
I: Iterator<Item = Result<Bytes, Error>>,
impl<T, I, O> Service<I, O> for TestServiceEndpoints<T> where
T: TestService<I, O> + 'static + Sync + Send,
I: Iterator<Item = Result<Bytes, Error>>,
Auto Trait Implementations
impl<T> RefUnwindSafe for TestServiceEndpoints<T> where
T: RefUnwindSafe,
impl<T> Send for TestServiceEndpoints<T> where
T: Send + Sync,
impl<T> Sync for TestServiceEndpoints<T> where
T: Send + Sync,
impl<T> Unpin for TestServiceEndpoints<T>
impl<T> UnwindSafe for TestServiceEndpoints<T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more