Struct feroxbuster::banner::Banner[][src]

pub struct Banner { /* fields omitted */ }

Banner object, contains multiple BannerEntry's and knows how to display itself

Implementations

impl Banner[src]

implementation of Banner

pub fn new(tgts: &[String], config: &Configuration) -> Self[src]

Create a new Banner from a Configuration and live targets

pub async fn check_for_updates(
    &mut self,
    url: &str,
    handles: Arc<Handles>
) -> Result<()>
[src]

Makes a request to the given url, expecting to receive a JSON response that contains a field named tag_name that holds a value representing the latest tagged release of this tool.

ex: v1.1.0

pub fn print_to<W>(&self, writer: W, config: Arc<Configuration>) -> Result<()> where
    W: Write
[src]

display the banner on Write writer

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> WithSubscriber for T[src]