[−][src]Struct xml_rpc::server::Server
Methods
impl Server
[src][−]
pub fn new() -> Server
[src]
pub fn register_value<K, T>(&mut self, name: K, handler: T) where
K: Into<String>,
T: Fn(Vec<Value>) -> Response + Send + Sync + 'static,
[src]
K: Into<String>,
T: Fn(Vec<Value>) -> Response + Send + Sync + 'static,
pub fn register<'a, K, Treq, Tres, Thandler, Tef, Tdf>(
&mut self,
name: K,
handler: Thandler,
encode_fail: Tef,
decode_fail: Tdf
) where
K: Into<String>,
Treq: Deserialize<'a>,
Tres: Serialize,
Thandler: Fn(Treq) -> Result<Tres, Fault> + Send + Sync + 'static,
Tef: Fn(&Error) -> Response + Send + Sync + 'static,
Tdf: Fn(&Error) -> Response + Send + Sync + 'static,
[src]
&mut self,
name: K,
handler: Thandler,
encode_fail: Tef,
decode_fail: Tdf
) where
K: Into<String>,
Treq: Deserialize<'a>,
Tres: Serialize,
Thandler: Fn(Treq) -> Result<Tres, Fault> + Send + Sync + 'static,
Tef: Fn(&Error) -> Response + Send + Sync + 'static,
Tdf: Fn(&Error) -> Response + Send + Sync + 'static,
pub fn register_simple<'a, K, Treq, Tres, Thandler>(
&mut self,
name: K,
handler: Thandler
) where
K: Into<String>,
Treq: Deserialize<'a>,
Tres: Serialize,
Thandler: Fn(Treq) -> Result<Tres, Fault> + Send + Sync + 'static,
[src]
&mut self,
name: K,
handler: Thandler
) where
K: Into<String>,
Treq: Deserialize<'a>,
Tres: Serialize,
Thandler: Fn(Treq) -> Result<Tres, Fault> + Send + Sync + 'static,
pub fn set_on_missing<T>(&mut self, handler: T) where
T: Fn(Vec<Value>) -> Response + Send + Sync + 'static,
[src]
T: Fn(Vec<Value>) -> Response + Send + Sync + 'static,
pub fn bind(
self,
uri: &SocketAddr
) -> Result<BoundServer<impl Fn(&Request) -> Response + Send + Sync + 'static>>
[src]
self,
uri: &SocketAddr
) -> Result<BoundServer<impl Fn(&Request) -> Response + Send + Sync + 'static>>
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Server
impl Send for Server
impl Sync for Server
impl Unpin for Server
impl !UnwindSafe for Server
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<T> Typeable for T where
T: Any,
[src][+]
T: Any,