| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Result::MobileWeb - Get mobile web search resulsts
DateTimeReturns a DateTime object representing the date and time of the last crawl.
DescriptionA string containing a portion of the HTML from the page.
DisplayUrlA URI object containing the URL, possibly modified for display, for the page.
TitleThe contents of the <title> tag.
UrlA URI object containing the unaltered URL.
Dave Houston, dhouston@cpan.org, 2010
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::MobileWeb; use Moose; extends 'Bing::Search::Result'; with 'Bing::Search::Role::Types::DateType'; with 'Bing::Search::Role::Types::UrlType'; with 'Bing::Search::Role::Result::DateTime'; with 'Bing::Search::Role::Result::Description'; with 'Bing::Search::Role::Result::DisplayUrl'; with 'Bing::Search::Role::Result::Title'; with 'Bing::Search::Role::Result::Url'; __PACKAGE__->meta->make_immutable;