Trait Requestable

Source
pub trait Requestable: RequestableInner {
    // Provided method
    fn debug_request(&self) -> DisplayRequestable<'_, Self>
       where Self: Sized { ... }
}
Expand description

A request for an object that can be served over the Tor directory system.

Provided Methods§

Source

fn debug_request(&self) -> DisplayRequestable<'_, Self>
where Self: Sized,

Return a wrapper around this Requestable that implements Debug, and whose output shows the actual HTTP request that will be generated.

The format is not guaranteed to be stable.

Implementors§

Source§

impl<T: RequestableInner> Requestable for T