Struct graphgate_handler::ServiceRoute[][src]

pub struct ServiceRoute {
    pub addr: String,
    pub tls: bool,
    pub query_path: Option<String>,
    pub subscribe_path: Option<String>,
}

Service routing information.

Fields

addr: String

Service address

For example: 1.2.3.4:8000, example.com:8080

tls: bool

Use TLS

query_path: Option<String>

GraphQL HTTP path, default is /.

subscribe_path: Option<String>

GraphQL WebSocket path, default is /.

Trait Implementations

impl Clone for ServiceRoute[src]

impl Debug for ServiceRoute[src]

impl Eq for ServiceRoute[src]

impl PartialEq<ServiceRoute> for ServiceRoute[src]

impl StructuralEq for ServiceRoute[src]

impl StructuralPartialEq for ServiceRoute[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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