| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Result - Base class for Results
See the specific Result objects for what methods are available.
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; use Moose; with 'Bing::Search::Role::Types::UrlType'; has 'data' => ( is => 'rw', builder => '_populate' # trigger => \&_populate ); sub _populate { # nothing here but us chickens } __PACKAGE__->meta->make_immutable;