pub struct HttpServer {
pub listen_address: SocketAddr,
pub request: Sender<HttpServerRequest>,
pub post_max_size: u64,
}
Fields§
§listen_address: SocketAddr
§request: Sender<HttpServerRequest>
§post_max_size: u64
Trait Implementations§
Source§impl Clone for HttpServer
impl Clone for HttpServer
Source§fn clone(&self) -> HttpServer
fn clone(&self) -> HttpServer
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for HttpServer
impl RefUnwindSafe for HttpServer
impl Send for HttpServer
impl Sync for HttpServer
impl Unpin for HttpServer
impl UnwindSafe for HttpServer
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