Skip to main content

Bound

Struct Bound 

Source
pub struct Bound { /* private fields */ }
Expand description

A listening socket and the origin that will answer on it.

Separate from Origin so that “the port is ours” is a thing the caller holds rather than something it hopes for. A caller cannot announce that the daemon is up before it is, because it has nothing to announce until this exists.

Implementations§

Source§

impl Bound

Source

pub fn refused(&self) -> &[String]

One line per alias, naming where it actually points.

Only available once bound, which is the point: an alias rooted at the home directory has no printable base until the remote has been asked. Enabled hosts that would not connect, and what ssh said about each.

Separate from routes so a caller cannot print them as though they were working. Empty on an ordinary run; not an error, because the daemon is serving everything else.

Source

pub fn routes(&self) -> &[String]

Source§

impl Bound

Source

pub async fn serve(self) -> Result<()>

Auto Trait Implementations§

§

impl !Freeze for Bound

§

impl !RefUnwindSafe for Bound

§

impl !UnwindSafe for Bound

§

impl Send for Bound

§

impl Sync for Bound

§

impl Unpin for Bound

§

impl UnsafeUnpin for Bound

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.