KiokuDB::Meta::Attribute::DoNotSerialize - Trait for skipped attributes
Contents
Copyright And License
This software is copyright (c) 2014 by Yuval Kogman, Infinity Interactive.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.34.0 2022-05-23 KiokuDB::Meta::...:DoNotSerialize(3pm)
Description
This Moose::Meta::Attribute trait provides tells KiokuDB to skip an attribute when serializing.
KiokuDB also recognizes MooseX::Meta::Attribute::Trait::DoNotSerialize, but if you don't want to install
MooseX::Storage you can use this instead.
Name
KiokuDB::Meta::Attribute::DoNotSerialize - Trait for skipped attributes
Synopsis
# in your class:
package Foo;
use Moose;
has bar => (
traits => [qw(KiokuDB::DoNotSerialize)],
isa => "Bar",
is => "ro",
lazy_build => 1,
);
Version
version 0.57
