DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
daphne::Status Class Referencefinal

#include <daphne_control_low.pb.h>

Inheritance diagram for daphne::Status:
[legend]
Collaboration diagram for daphne::Status:
[legend]

Classes

class  _Internal
 
struct  Impl_
 

Public Types

enum  : int { kExtraFieldNumber = 2 , kSuccessFieldNumber = 1 }
 

Public Member Functions

 Status ()
 
 ~Status () override
 
template<typename = void>
PROTOBUF_CONSTEXPR Status (::google::protobuf::internal::ConstantInitialized)
 
 Status (const Status &from)
 
 Status (Status &&from) noexcept
 
Statusoperator= (const Status &from)
 
Statusoperator= (Status &&from) noexcept
 
const ::google::protobuf::UnknownFieldSet & unknown_fields () const
 
inline ::google::protobuf::UnknownFieldSet * mutable_unknown_fields ()
 
void Swap (Status *other)
 
void UnsafeArenaSwap (Status *other)
 
StatusNew (::google::protobuf::Arena *arena=nullptr) const final
 
void CopyFrom (const Status &from)
 
void MergeFrom (const Status &from)
 
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear () final
 
bool IsInitialized () const final
 
::size_t ByteSizeLong () const final
 
const char * _InternalParse (const char *ptr, ::google::protobuf::internal::ParseContext *ctx) final
 
::uint8_t * _InternalSerialize (::uint8_t *target, ::google::protobuf::io::EpsCopyOutputStream *stream) const final
 
int GetCachedSize () const final
 
const ::google::protobuf::Message::ClassData * GetClassData () const final
 
::google::protobuf::Metadata GetMetadata () const final
 
void clear_extra ()
 
const std::string & extra () const
 
template<typename Arg_ = const std::string&, typename... Args_>
void set_extra (Arg_ &&arg, Args_... args)
 
std::string * mutable_extra ()
 
PROTOBUF_NODISCARD std::string * release_extra ()
 
void set_allocated_extra (std::string *ptr)
 
void clear_success ()
 
bool success () const
 
void set_success (bool value)
 

Static Public Member Functions

static const ::google::protobuf::Descriptor * descriptor ()
 
static const ::google::protobuf::Descriptor * GetDescriptor ()
 
static const ::google::protobuf::Reflection * GetReflection ()
 
static const Statusdefault_instance ()
 
static const Statusinternal_default_instance ()
 

Static Public Attributes

static constexpr int kIndexInFileMessages
 
static const ClassData _class_data_
 

Protected Member Functions

 Status (::google::protobuf::Arena *arena)
 

Private Types

typedef void InternalArenaConstructable_
 
typedef void DestructorSkippable_
 

Private Member Functions

void SharedCtor (::google::protobuf::Arena *arena)
 
void SharedDtor ()
 
void SetCachedSize (int size) const final
 
void InternalSwap (Status *other)
 
const std::string & _internal_extra () const
 
PROTOBUF_ALWAYS_INLINE void _internal_set_extra (const std::string &value)
 
std::string * _internal_mutable_extra ()
 
bool _internal_success () const
 
void _internal_set_success (bool value)
 

Static Private Member Functions

static void MergeImpl (::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)
 
::absl::string_view FullMessageName ()
 

Private Attributes

union { 
 
   Impl_   _impl_ 
 
};  
 

Static Private Attributes

static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2 > _table_
 

Friends

class ::google::protobuf::internal::AnyMetadata
 
class ::google::protobuf::internal::TcParser
 
template<typename T >
class ::google::protobuf::Arena::InternalHelper
 
struct ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5flow_2eproto
 
void swap (Status &a, Status &b)
 

Detailed Description

Definition at line 11086 of file daphne_control_low.pb.h.

Member Typedef Documentation

◆ DestructorSkippable_

Definition at line 11251 of file daphne_control_low.pb.h.

◆ InternalArenaConstructable_

Member Enumeration Documentation

◆ anonymous enum

anonymous enum : int
Enumerator
kExtraFieldNumber 
kSuccessFieldNumber 

Definition at line 11213 of file daphne_control_low.pb.h.

11213 : int {
11216 };

Constructor & Destructor Documentation

◆ Status() [1/5]

daphne::Status::Status ( )
inline

Definition at line 11089 of file daphne_control_low.pb.h.

11089: Status(nullptr) {}

◆ ~Status()

daphne::Status::~Status ( )
override

Definition at line 15819 of file daphne_control_low.pb.cc.

15819 {
15820 // @@protoc_insertion_point(destructor:daphne.Status)
15821 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
15822 SharedDtor();
15823}

◆ Status() [2/5]

template<typename = void>
PROTOBUF_CONSTEXPR daphne::Status::Status ( ::google::protobuf::internal::ConstantInitialized )
explicit

◆ Status() [3/5]

daphne::Status::Status ( const Status & from)

Definition at line 15786 of file daphne_control_low.pb.cc.

15786 : ::google::protobuf::Message() {
15787 Status* const _this = this;
15788 (void)_this;
15789 new (&_impl_) Impl_{
15790 decltype(_impl_.extra_){},
15791 decltype(_impl_.success_){},
15792 /*decltype(_impl_._cached_size_)*/ {},
15793 };
15794 _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
15795 from._internal_metadata_);
15796 _impl_.extra_.InitDefault();
15797 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
15798 _impl_.extra_.Set("", GetArenaForAllocation());
15799 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
15800 if (!from._internal_extra().empty()) {
15801 _this->_impl_.extra_.Set(from._internal_extra(), _this->GetArenaForAllocation());
15802 }
15803 _this->_impl_.success_ = from._impl_.success_;
15804
15805 // @@protoc_insertion_point(copy_constructor:daphne.Status)
15806}
::google::protobuf::internal::ArenaStringPtr extra_

◆ Status() [4/5]

daphne::Status::Status ( Status && from)
inlinenoexcept

Definition at line 11095 of file daphne_control_low.pb.h.

11096 : Status() {
11097 *this = ::std::move(from);
11098 }

◆ Status() [5/5]

daphne::Status::Status ( ::google::protobuf::Arena * arena)
explicitprotected

Definition at line 15781 of file daphne_control_low.pb.cc.

15782 : ::google::protobuf::Message(arena) {
15783 SharedCtor(arena);
15784 // @@protoc_insertion_point(arena_constructor:daphne.Status)
15785}
void SharedCtor(::google::protobuf::Arena *arena)

Member Function Documentation

◆ _internal_extra()

const std::string & daphne::Status::_internal_extra ( ) const
inlineprivate

Definition at line 16554 of file daphne_control_low.pb.h.

16554 {
16555 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
16556 return _impl_.extra_.Get();
16557}

◆ _internal_mutable_extra()

std::string * daphne::Status::_internal_mutable_extra ( )
inlineprivate

Definition at line 16563 of file daphne_control_low.pb.h.

16563 {
16564 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
16565 ;
16566 return _impl_.extra_.Mutable( GetArenaForAllocation());
16567}

◆ _internal_set_extra()

void daphne::Status::_internal_set_extra ( const std::string & value)
inlineprivate

Definition at line 16558 of file daphne_control_low.pb.h.

16558 {
16559 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
16560 ;
16561 _impl_.extra_.Set(value, GetArenaForAllocation());
16562}

◆ _internal_set_success()

void daphne::Status::_internal_set_success ( bool value)
inlineprivate

Definition at line 16527 of file daphne_control_low.pb.h.

16527 {
16528 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
16529 ;
16530 _impl_.success_ = value;
16531}

◆ _internal_success()

bool daphne::Status::_internal_success ( ) const
inlineprivate

Definition at line 16523 of file daphne_control_low.pb.h.

16523 {
16524 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
16525 return _impl_.success_;
16526}

◆ _InternalParse()

const char * daphne::Status::_InternalParse ( const char * ptr,
::google::protobuf::internal::ParseContext * ctx )
final

◆ _InternalSerialize()

uint8_t * daphne::Status::_InternalSerialize ( ::uint8_t * target,
::google::protobuf::io::EpsCopyOutputStream * stream ) const
final

Definition at line 15886 of file daphne_control_low.pb.cc.

15888 {
15889 // @@protoc_insertion_point(serialize_to_array_start:daphne.Status)
15890 ::uint32_t cached_has_bits = 0;
15891 (void)cached_has_bits;
15892
15893 // bool success = 1;
15894 if (this->_internal_success() != 0) {
15895 target = stream->EnsureSpace(target);
15896 target = ::_pbi::WireFormatLite::WriteBoolToArray(
15897 1, this->_internal_success(), target);
15898 }
15899
15900 // bytes extra = 2;
15901 if (!this->_internal_extra().empty()) {
15902 const std::string& _s = this->_internal_extra();
15903 target = stream->WriteBytesMaybeAliased(2, _s, target);
15904 }
15905
15906 if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
15907 target =
15908 ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
15909 _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
15910 }
15911 // @@protoc_insertion_point(serialize_to_array_end:daphne.Status)
15912 return target;
15913}
const std::string & _internal_extra() const

◆ ByteSizeLong()

size_t daphne::Status::ByteSizeLong ( ) const
final

Definition at line 15915 of file daphne_control_low.pb.cc.

15915 {
15916// @@protoc_insertion_point(message_byte_size_start:daphne.Status)
15917 ::size_t total_size = 0;
15918
15919 ::uint32_t cached_has_bits = 0;
15920 // Prevent compiler warnings about cached_has_bits being unused
15921 (void) cached_has_bits;
15922
15923 // bytes extra = 2;
15924 if (!this->_internal_extra().empty()) {
15925 total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize(
15926 this->_internal_extra());
15927 }
15928
15929 // bool success = 1;
15930 if (this->_internal_success() != 0) {
15931 total_size += 2;
15932 }
15933
15934 return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
15935}
mutable::google::protobuf::internal::CachedSize _cached_size_

◆ Clear()

PROTOBUF_NOINLINE void daphne::Status::Clear ( )
final

Definition at line 15832 of file daphne_control_low.pb.cc.

15832 {
15833// @@protoc_insertion_point(message_clear_start:daphne.Status)
15834 ::uint32_t cached_has_bits = 0;
15835 // Prevent compiler warnings about cached_has_bits being unused
15836 (void) cached_has_bits;
15837
15838 _impl_.extra_.ClearToEmpty();
15839 _impl_.success_ = false;
15840 _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
15841}

◆ clear_extra()

void daphne::Status::clear_extra ( )
inline

Definition at line 16534 of file daphne_control_low.pb.h.

16534 {
16535 _impl_.extra_.ClearToEmpty();
16536}

◆ clear_success()

void daphne::Status::clear_success ( )
inline

Definition at line 16512 of file daphne_control_low.pb.h.

16512 {
16513 _impl_.success_ = false;
16514}

◆ CopyFrom()

void daphne::Status::CopyFrom ( const Status & from)

Definition at line 15961 of file daphne_control_low.pb.cc.

15961 {
15962// @@protoc_insertion_point(class_specific_copy_from_start:daphne.Status)
15963 if (&from == this) return;
15964 Clear();
15965 MergeFrom(from);
15966}
void MergeFrom(const Status &from)
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final

◆ default_instance()

static const Status & daphne::Status::default_instance ( )
inlinestatic

Definition at line 11134 of file daphne_control_low.pb.h.

11134 {
11135 return *internal_default_instance();
11136 }
static const Status * internal_default_instance()

◆ descriptor()

static const ::google::protobuf::Descriptor * daphne::Status::descriptor ( )
inlinestatic

Definition at line 11125 of file daphne_control_low.pb.h.

11125 {
11126 return GetDescriptor();
11127 }
static const ::google::protobuf::Descriptor * GetDescriptor()

◆ extra()

const std::string & daphne::Status::extra ( ) const
inline

Definition at line 16537 of file daphne_control_low.pb.h.

16537 {
16538 // @@protoc_insertion_point(field_get:daphne.Status.extra)
16539 return _internal_extra();
16540}

◆ FullMessageName()

::absl::string_view daphne::Status::FullMessageName ( )
inlinestaticprivate

Definition at line 11197 of file daphne_control_low.pb.h.

11197 {
11198 return "daphne.Status";
11199 }

◆ GetCachedSize()

int daphne::Status::GetCachedSize ( ) const
inlinefinal

Definition at line 11187 of file daphne_control_low.pb.h.

11187{ return _impl_._cached_size_.Get(); }

◆ GetClassData()

const::google::protobuf::Message::ClassData * daphne::Status::GetClassData ( ) const
final

Definition at line 15941 of file daphne_control_low.pb.cc.

15941{ return &_class_data_; }
static const ClassData _class_data_

◆ GetDescriptor()

static const ::google::protobuf::Descriptor * daphne::Status::GetDescriptor ( )
inlinestatic

Definition at line 11128 of file daphne_control_low.pb.h.

11128 {
11129 return default_instance().GetMetadata().descriptor;
11130 }
::google::protobuf::Metadata GetMetadata() const final
static const Status & default_instance()

◆ GetMetadata()

google::protobuf::Metadata daphne::Status::GetMetadata ( ) const
final

Definition at line 15982 of file daphne_control_low.pb.cc.

15982 {
15983 return ::_pbi::AssignDescriptors(
15986}
::_pb::Metadata file_level_metadata_daphnemodules_2fdaphne_5fcontrol_5flow_2eproto[59]
PROTOBUF_ATTRIBUTE_WEAKconst ::_pbi::DescriptorTable * descriptor_table_daphnemodules_2fdaphne_5fcontrol_5flow_2eproto_getter()
::absl::once_flag descriptor_table_daphnemodules_2fdaphne_5fcontrol_5flow_2eproto_once

◆ GetReflection()

static const ::google::protobuf::Reflection * daphne::Status::GetReflection ( )
inlinestatic

Definition at line 11131 of file daphne_control_low.pb.h.

11131 {
11132 return default_instance().GetMetadata().reflection;
11133 }

◆ internal_default_instance()

static const Status * daphne::Status::internal_default_instance ( )
inlinestatic

Definition at line 11137 of file daphne_control_low.pb.h.

11137 {
11138 return reinterpret_cast<const Status*>(
11140 }
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StatusDefaultTypeInternal _Status_default_instance_

◆ InternalSwap()

void daphne::Status::InternalSwap ( Status * other)
private

Definition at line 15972 of file daphne_control_low.pb.cc.

15972 {
15973 using std::swap;
15974 auto* lhs_arena = GetArenaForAllocation();
15975 auto* rhs_arena = other->GetArenaForAllocation();
15976 _internal_metadata_.InternalSwap(&other->_internal_metadata_);
15977 ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.extra_, lhs_arena,
15978 &other->_impl_.extra_, rhs_arena);
15979 swap(_impl_.success_, other->_impl_.success_);
15980}
friend void swap(Status &a, Status &b)

◆ IsInitialized()

PROTOBUF_NOINLINE bool daphne::Status::IsInitialized ( ) const
final

Definition at line 15968 of file daphne_control_low.pb.cc.

15968 {
15969 return true;
15970}

◆ MergeFrom()

void daphne::Status::MergeFrom ( const Status & from)
inline

Definition at line 11174 of file daphne_control_low.pb.h.

11174 {
11175 Status::MergeImpl(*this, from);
11176 }
static void MergeImpl(::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)

◆ MergeImpl()

void daphne::Status::MergeImpl ( ::google::protobuf::Message & to_msg,
const ::google::protobuf::Message & from_msg )
staticprivate

Definition at line 15944 of file daphne_control_low.pb.cc.

15944 {
15945 auto* const _this = static_cast<Status*>(&to_msg);
15946 auto& from = static_cast<const Status&>(from_msg);
15947 // @@protoc_insertion_point(class_specific_merge_from_start:daphne.Status)
15948 ABSL_DCHECK_NE(&from, _this);
15949 ::uint32_t cached_has_bits = 0;
15950 (void) cached_has_bits;
15951
15952 if (!from._internal_extra().empty()) {
15953 _this->_internal_set_extra(from._internal_extra());
15954 }
15955 if (from._internal_success() != 0) {
15956 _this->_internal_set_success(from._internal_success());
15957 }
15958 _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_);
15959}

◆ mutable_extra()

std::string * daphne::Status::mutable_extra ( )
inline

Definition at line 16549 of file daphne_control_low.pb.h.

16549 {
16550 std::string* _s = _internal_mutable_extra();
16551 // @@protoc_insertion_point(field_mutable:daphne.Status.extra)
16552 return _s;
16553}
std::string * _internal_mutable_extra()

◆ mutable_unknown_fields()

inline ::google::protobuf::UnknownFieldSet * daphne::Status::mutable_unknown_fields ( )
inline

Definition at line 11121 of file daphne_control_low.pb.h.

11121 {
11122 return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
11123 }

◆ New()

Status * daphne::Status::New ( ::google::protobuf::Arena * arena = nullptr) const
inlinefinal

Definition at line 11168 of file daphne_control_low.pb.h.

11168 {
11169 return CreateMaybeMessage<Status>(arena);
11170 }

◆ operator=() [1/2]

Status & daphne::Status::operator= ( const Status & from)
inline

Definition at line 11100 of file daphne_control_low.pb.h.

11100 {
11101 CopyFrom(from);
11102 return *this;
11103 }
void CopyFrom(const Status &from)

◆ operator=() [2/2]

Status & daphne::Status::operator= ( Status && from)
inlinenoexcept

Definition at line 11104 of file daphne_control_low.pb.h.

11104 {
11105 if (this == &from) return *this;
11106 if (GetOwningArena() == from.GetOwningArena()
11107 #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
11108 && GetOwningArena() != nullptr
11109 #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
11110 ) {
11111 InternalSwap(&from);
11112 } else {
11113 CopyFrom(from);
11114 }
11115 return *this;
11116 }
void InternalSwap(Status *other)

◆ release_extra()

std::string * daphne::Status::release_extra ( )
inline

Definition at line 16568 of file daphne_control_low.pb.h.

16568 {
16569 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
16570 // @@protoc_insertion_point(field_release:daphne.Status.extra)
16571 return _impl_.extra_.Release();
16572}

◆ set_allocated_extra()

void daphne::Status::set_allocated_extra ( std::string * ptr)
inline

Definition at line 16573 of file daphne_control_low.pb.h.

16573 {
16574 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
16575 _impl_.extra_.SetAllocated(value, GetArenaForAllocation());
16576 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
16577 if (_impl_.extra_.IsDefault()) {
16578 _impl_.extra_.Set("", GetArenaForAllocation());
16579 }
16580 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
16581 // @@protoc_insertion_point(field_set_allocated:daphne.Status.extra)
16582}

◆ set_extra()

template<typename Arg_ = const std::string&, typename... Args_>
void daphne::Status::set_extra ( Arg_ && arg,
Args_... args )

◆ set_success()

void daphne::Status::set_success ( bool value)
inline

Definition at line 16519 of file daphne_control_low.pb.h.

16519 {
16520 _internal_set_success(value);
16521 // @@protoc_insertion_point(field_set:daphne.Status.success)
16522}
void _internal_set_success(bool value)

◆ SetCachedSize()

void daphne::Status::SetCachedSize ( int size) const
finalprivate

Definition at line 15828 of file daphne_control_low.pb.cc.

15828 {
15829 _impl_._cached_size_.Set(size);
15830}

◆ SharedCtor()

void daphne::Status::SharedCtor ( ::google::protobuf::Arena * arena)
private

◆ SharedDtor()

void daphne::Status::SharedDtor ( )
inlineprivate

Definition at line 15824 of file daphne_control_low.pb.cc.

15824 {
15825 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
15826 _impl_.extra_.Destroy();
15827}

◆ success()

bool daphne::Status::success ( ) const
inline

Definition at line 16515 of file daphne_control_low.pb.h.

16515 {
16516 // @@protoc_insertion_point(field_get:daphne.Status.success)
16517 return _internal_success();
16518}

◆ Swap()

void daphne::Status::Swap ( Status * other)
inline

Definition at line 11147 of file daphne_control_low.pb.h.

11147 {
11148 if (other == this) return;
11149 #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
11150 if (GetOwningArena() != nullptr &&
11151 GetOwningArena() == other->GetOwningArena()) {
11152 #else // PROTOBUF_FORCE_COPY_IN_SWAP
11153 if (GetOwningArena() == other->GetOwningArena()) {
11154 #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
11155 InternalSwap(other);
11156 } else {
11157 ::google::protobuf::internal::GenericSwap(this, other);
11158 }
11159 }

◆ unknown_fields()

const ::google::protobuf::UnknownFieldSet & daphne::Status::unknown_fields ( ) const
inline

Definition at line 11118 of file daphne_control_low.pb.h.

11118 {
11119 return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
11120 }

◆ UnsafeArenaSwap()

void daphne::Status::UnsafeArenaSwap ( Status * other)
inline

Definition at line 11160 of file daphne_control_low.pb.h.

11160 {
11161 if (other == this) return;
11162 ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
11163 InternalSwap(other);
11164 }

Friends And Related Symbol Documentation

◆ ::google::protobuf::Arena::InternalHelper

template<typename T >
friend class ::google::protobuf::Arena::InternalHelper
friend

Definition at line 11249 of file daphne_control_low.pb.h.

◆ ::google::protobuf::internal::AnyMetadata

friend class ::google::protobuf::internal::AnyMetadata
friend

Definition at line 11196 of file daphne_control_low.pb.h.

◆ ::google::protobuf::internal::TcParser

friend class ::google::protobuf::internal::TcParser
friend

Definition at line 11247 of file daphne_control_low.pb.h.

◆ ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5flow_2eproto

◆ swap

void swap ( Status & a,
Status & b )
friend

Definition at line 11144 of file daphne_control_low.pb.h.

11144 {
11145 a.Swap(&b);
11146 }

Member Data Documentation

◆ [union]

union { ... } daphne::Status

◆ _class_data_

const::google::protobuf::Message::ClassData daphne::Status::_class_data_
static
Initial value:
= {
::google::protobuf::Message::CopyWithSourceCheck,
}

Definition at line 11204 of file daphne_control_low.pb.h.

◆ _impl_

Impl_ daphne::Status::_impl_

Definition at line 11258 of file daphne_control_low.pb.h.

◆ _table_

PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 const::_pbi::TcParseTable< 1, 2, 0, 0, 2 > daphne::Status::_table_
staticprivate

Definition at line 11248 of file daphne_control_low.pb.h.

◆ kIndexInFileMessages

int daphne::Status::kIndexInFileMessages
staticconstexpr
Initial value:
=
58

Definition at line 11141 of file daphne_control_low.pb.h.


The documentation for this class was generated from the following files: