Bing::Search::Result::Web - Web results from Bing


Bing-Search documentation Contained in the Bing-Search distribution.

Index


Code Index:

NAME

Top

Bing::Search::Result::Web - Web results from Bing

METHODS

Top

Url

A URI object representing the link to the result

CacheUrl

A URI representing Bing's cache of the result.

DateTime

A DateTime object representing the date and time of Bing's last crawl.

Description

A portion of the body text of the result.

DisplayUrl

A URI object representing the link to the result, possibly modified for display.

Title

The title of the result.

AUTHOR

Top

Dave Houston, dhouston@cpan.org, 2010

LICENSE

Top

This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.


Bing-Search documentation Contained in the Bing-Search distribution.

package Bing::Search::Result::Web;
use Moose;
extends 'Bing::Search::Result';

with 'Bing::Search::Role::Types::UrlType';
with 'Bing::Search::Role::Types::DateType';

with qw(
   Bing::Search::Role::Result::Url
   Bing::Search::Role::Result::CacheUrl
   Bing::Search::Role::Result::DateTime
   Bing::Search::Role::Result::Description
   Bing::Search::Role::Result::DisplayUrl
   Bing::Search::Role::Result::Title
);

__PACKAGE__->meta->make_immutable;