pub struct Transport { /* private fields */ }
Expand description

A transport is a structure which knows how to transfer data to and from a remote.

This transport is a representation of the raw transport underneath it, which is similar to a trait object in Rust.

Implementations

Creates a new transport which will use the “smart” transport protocol for transferring data.

A smart transport requires a subtransport over which data is actually communicated, but this subtransport largely just needs to be able to read() and write(). The subtransport provided will be used to make connections which can then be read/written from.

The rpc argument is true if the protocol is stateless, false otherwise. For example http:// is stateless but git:// is not.

Trait Implementations

Executes the destructor for this 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

Returns the argument unchanged.

Calls U::from(self).

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

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.