pub struct Resolved {
pub port: u16,
pub suffix: String,
pub scheme: String,
pub aliases: Vec<Alias>,
pub hosts: Vec<Reachable>,
}Expand description
What the daemon will actually run with.
Fields§
§port: u16§suffix: String§scheme: String§aliases: Vec<Alias>§hosts: Vec<Reachable>Hosts reachable on demand. Carried through rather than merged with anything: there is no command-line half of this, because a host worth reaching every day is worth writing down once.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Resolved
impl RefUnwindSafe for Resolved
impl Send for Resolved
impl Sync for Resolved
impl Unpin for Resolved
impl UnsafeUnpin for Resolved
impl UnwindSafe for Resolved
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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