Struct rocket::http::hyper::Server

source ·
pub struct Server<L = HttpListener> { /* private fields */ }
Expand description

A server can listen on a TCP socket.

Once listening, it will create a Request/Response pair for each incoming connection, and hand them to the provided handler.

Implementations§

source§

impl<L> Server<L>
where L: NetworkListener,

source

pub fn new(listener: L) -> Server<L>

Creates a new server with the provided handler.

source

pub fn keep_alive(&mut self, timeout: Option<Duration>)

Controls keep-alive for this server.

The timeout duration passed will be used to determine how long to keep the connection alive before dropping it.

Passing None will disable keep-alive.

Default is enabled with a 5 second timeout.

source

pub fn set_read_timeout(&mut self, dur: Option<Duration>)

Sets the read timeout for all Request reads.

source

pub fn set_write_timeout(&mut self, dur: Option<Duration>)

Sets the write timeout for all Response writes.

source

pub fn local_addr(&mut self) -> Result<SocketAddr, Error>

Get the address that the server is listening on.

source§

impl Server

source

pub fn http<To>(addr: To) -> Result<Server, Error>
where To: ToSocketAddrs,

Creates a new server that will handle HttpStreams.

source§

impl<S> Server<HttpsListener<S>>
where S: SslServer + Clone + Send,

source

pub fn https<A>(addr: A, ssl: S) -> Result<Server<HttpsListener<S>>, Error>
where A: ToSocketAddrs,

Creates a new server that will handle HttpStreams over SSL.

You can use any SSL implementation, as long as implements hyper::net::Ssl.

source§

impl<L> Server<L>
where L: NetworkListener + Send + 'static,

source

pub fn handle<H>(self, handler: H) -> Result<Listening, Error>
where H: Handler + 'static,

Binds to a socket and starts handling connections.

source

pub fn handle_threads<H>( self, handler: H, threads: usize ) -> Result<Listening, Error>
where H: Handler + 'static,

Binds to a socket and starts handling connections with the provided number of threads.

Trait Implementations§

source§

impl<L> Debug for Server<L>
where L: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<L> Freeze for Server<L>
where L: Freeze,

§

impl<L> RefUnwindSafe for Server<L>
where L: RefUnwindSafe,

§

impl<L> Send for Server<L>
where L: Send,

§

impl<L> Sync for Server<L>
where L: Sync,

§

impl<L> Unpin for Server<L>
where L: Unpin,

§

impl<L> UnwindSafe for Server<L>
where L: 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, I> AsResult<T, I> for T
where I: Input,

source§

fn as_result(self) -> Result<T, ParseErr<I>>

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
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

§

impl<T> IntoCollection<T> for T

§

fn into_collection<A>(self) -> SmallVec<A>
where A: Array<Item = T>,

Converts self into a collection.
§

fn mapped<U, F, A>(self, f: F) -> SmallVec<A>
where F: FnMut(T) -> U, A: Array<Item = U>,

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.
source§

impl<T> Typeable for T
where T: Any,

source§

fn get_type(&self) -> TypeId

Get the TypeId of this object.
source§

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

source§

fn vzip(self) -> V