pub struct Server<S> { /* private fields */ }
Implementations§
Source§impl<S> Server<S>
impl<S> Server<S>
Sourcepub fn try_new<L>(listener: L, service: S) -> Result<Self, L::Error>where
L: TryInto<UnixOrTcpListener>,
pub fn try_new<L>(listener: L, service: S) -> Result<Self, L::Error>where
L: TryInto<UnixOrTcpListener>,
pub fn new(listener: impl Into<UnixOrTcpListener>, service: S) -> Self
pub const fn with_proxy(self) -> Self
pub fn with_tls(self, config: Arc<ServerConfig>) -> Self
Sourcepub async fn run<B>(
self,
soft_shutdown_token: CancellationToken,
hard_shutdown_token: CancellationToken,
)
pub async fn run<B>( self, soft_shutdown_token: CancellationToken, hard_shutdown_token: CancellationToken, )
Run a single server
Auto Trait Implementations§
impl<S> !Freeze for Server<S>
impl<S> !RefUnwindSafe for Server<S>
impl<S> Send for Server<S>where
S: Send,
impl<S> Sync for Server<S>where
S: Sync,
impl<S> Unpin for Server<S>where
S: Unpin,
impl<S> !UnwindSafe for Server<S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more