LeviLamina
Loading...
Searching...
No Matches
ConstraintDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cereal::internal {
6
7struct ConstraintDescription {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 16, ::std::optional<double>> mMultipleOf;
12 ::ll::TypedStorage<8, 16, ::std::optional<double>> mMinimum;
13 ::ll::TypedStorage<8, 16, ::std::optional<double>> mExclusiveMinimum;
14 ::ll::TypedStorage<8, 16, ::std::optional<double>> mMaximum;
15 ::ll::TypedStorage<8, 16, ::std::optional<double>> mExclusiveMaximum;
16 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMinLength;
17 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMaxLength;
18 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mPattern;
19 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mRegexFlags;
20 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMinItems;
21 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMaxItems;
22 ::ll::TypedStorage<1, 2, ::std::optional<bool>> mNoDuplicates;
23 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::cereal::internal::ConstraintDescription>> mItems;
24 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMinProperties;
25 ::ll::TypedStorage<8, 16, ::std::optional<uint64>> mMaxProperties;
26 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::cereal::internal::ConstraintDescription>> mPropertyNames;
27 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::cereal::internal::ConstraintDescription>> mAdditionalProperties;
28 ::ll::TypedStorage<8, 32, ::std::optional<::std::vector<int64>>> mEnumValues;
29 ::ll::TypedStorage<8, 24, ::std::vector<::std::optional<::cereal::internal::ConstraintDescription>>> mVariantTypes;
30 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mCustomDescription;
31 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mNonPublicFlag;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 ConstraintDescription();
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI ConstraintDescription(::cereal::internal::ConstraintDescription&&);
42
43 MCAPI ConstraintDescription(::cereal::internal::ConstraintDescription const&);
44
45 MCAPI void merge(::cereal::internal::ConstraintDescription const& other);
46
47 MCAPI ::cereal::internal::ConstraintDescription& operator=(::cereal::internal::ConstraintDescription&&);
48
49 MCAPI ::cereal::internal::ConstraintDescription& operator=(::cereal::internal::ConstraintDescription const&);
50
51 MCAPI ~ConstraintDescription();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
58
59 MCAPI void* $ctor(::cereal::internal::ConstraintDescription const&);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCAPI void $dtor();
66 // NOLINTEND
67};
68
69} // namespace cereal::internal
Definition ConstraintDescription.h:7