line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Copyright 2014 - present MongoDB, Inc. |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
4
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
5
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
10
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
11
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
13
|
|
|
|
|
|
|
# limitations under the License. |
14
|
|
|
|
|
|
|
|
15
|
58
|
|
|
58
|
|
402
|
use strict; |
|
58
|
|
|
|
|
136
|
|
|
58
|
|
|
|
|
1760
|
|
16
|
58
|
|
|
58
|
|
321
|
use warnings; |
|
58
|
|
|
|
|
127
|
|
|
58
|
|
|
|
|
2013
|
|
17
|
|
|
|
|
|
|
package MongoDB::InsertOneResult; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# ABSTRACT: MongoDB single insert result object |
20
|
|
|
|
|
|
|
|
21
|
58
|
|
|
58
|
|
337
|
use version; |
|
58
|
|
|
|
|
174
|
|
|
58
|
|
|
|
|
387
|
|
22
|
|
|
|
|
|
|
our $VERSION = 'v2.2.0'; |
23
|
|
|
|
|
|
|
|
24
|
58
|
|
|
58
|
|
4754
|
use Moo; |
|
58
|
|
|
|
|
157
|
|
|
58
|
|
|
|
|
403
|
|
25
|
58
|
|
|
58
|
|
18583
|
use namespace::clean; |
|
58
|
|
|
|
|
200
|
|
|
58
|
|
|
|
|
534
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
with $_ for qw( |
28
|
|
|
|
|
|
|
MongoDB::Role::_PrivateConstructor |
29
|
|
|
|
|
|
|
MongoDB::Role::_WriteResult |
30
|
|
|
|
|
|
|
); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
#pod =attr inserted_id |
33
|
|
|
|
|
|
|
#pod |
34
|
|
|
|
|
|
|
#pod The identifier of the inserted document. |
35
|
|
|
|
|
|
|
#pod |
36
|
|
|
|
|
|
|
#pod =cut |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
has inserted_id => ( |
39
|
|
|
|
|
|
|
is => 'ro', |
40
|
|
|
|
|
|
|
required => 1, |
41
|
|
|
|
|
|
|
); |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
1; |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
__END__ |