MooseX::Clone::Meta::Attribute::Trait::StorableClone(3pm) | User Contributed Perl Documentation | MooseX::Clone::Meta::Attribute::Trait::StorableClone(3pm) |
MooseX::Clone::Meta::Attribute::Trait::StorableClone - The attribute trait for deeply cloning attributes using Storable
version 0.06
# see MooseX::Clone has foo => ( traits => [qw(StorableClone)], isa => "Something", ); my $clone = $object->clone; # $clone->foo will equal Storable::dclone($object->foo)
This meta attribute trait provides a "clone_value" method, in the spirit of "get_value" and "set_value". This allows clone methods such as the one in MooseX::Clone to make use of this per-attribute cloning behavior.
Deriving this role for your own cloning purposes is encouraged.
This will allow your fine grained cloning semantics to interact with MooseX::Clone in the RightX way.
If true then non object values will be copied over in shallow cloning semantics (shared reference).
Defaults to false (all reference will be cloned).
This can be used to alter the cloning behavior for non object values.
It has an "object" handler that delegates to "clone_object_value" and sets "tied_as_objects" to true in order to deeply clone tied structures while retaining magic.
Only used if "clone_only_objects" is false and the value of the attribute is not an object.
If the object does not support a "clone" method an error is thrown.
If the value is not an object then it will not be cloned.
In the future support for deep cloning of simple refs will be added too.
Called from "clone_value_data" if the value is not an object and "clone_only_objects" is false.
XXXX XXX'XX (Yuval Kogman) <nothingmuch@woobling.org>
This software is copyright (c) 2008 by XXXX XXX'XX (Yuval Kogman).
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-06-15 | perl v5.34.0 |