Struct kitsune_p2p_transport_quic::ConfigListenerQuic[][src]

#[non_exhaustive]
pub struct ConfigListenerQuic { pub bind_to: Option<Url2>, pub override_host: Option<String>, pub override_port: Option<u16>, pub tls: Option<(Cert, CertPrivKey)>, }
Expand description

Configuration struct for spawn_transport_listener_quic()

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
bind_to: Option<Url2>

To which network interface / port should we bind? Default: “kitsune-quic://0.0.0.0:0”.

override_host: Option<String>

If you have port-forwarding set up, or wish to apply a vanity domain name, you may need to override the local NIC ip. Default: None = use NIC ip.

override_port: Option<u16>

If you have port-forwarding set up, you may need to override the local NIC port. Default: None = use NIC port.

tls: Option<(Cert, CertPrivKey)>

Tls config Default: None = ephemeral.

Implementations

Set ‘bind_to’ builder pattern.

Set ‘override_host’ builder pattern.

Set ‘override_port’ builder pattern.

Set ‘tls’ builder pattern.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more