pub struct UrlInputs {
pub public_url: Option<String>,
pub tunnel_url: Option<String>,
pub gateway_remote_url: Option<String>,
pub lan_url: Option<String>,
pub ws_cleartext_allow_extra: Vec<String>,
}Fields§
§public_url: Option<String>§tunnel_url: Option<String>§gateway_remote_url: Option<String>§lan_url: Option<String>§ws_cleartext_allow_extra: Vec<String>Extra hostnames where cleartext ws:// is allowed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UrlInputs
impl RefUnwindSafe for UrlInputs
impl Send for UrlInputs
impl Sync for UrlInputs
impl Unpin for UrlInputs
impl UnsafeUnpin for UrlInputs
impl UnwindSafe for UrlInputs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more