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

#include <daphne_control_high.pb.h>

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

Classes

class  _Internal
 
struct  Impl_
 

Public Types

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

Public Member Functions

 WriteRegisterResponse ()
 
 ~WriteRegisterResponse () override
 
template<typename = void>
PROTOBUF_CONSTEXPR WriteRegisterResponse (::google::protobuf::internal::ConstantInitialized)
 
 WriteRegisterResponse (const WriteRegisterResponse &from)
 
 WriteRegisterResponse (WriteRegisterResponse &&from) noexcept
 
WriteRegisterResponseoperator= (const WriteRegisterResponse &from)
 
WriteRegisterResponseoperator= (WriteRegisterResponse &&from) noexcept
 
const ::google::protobuf::UnknownFieldSet & unknown_fields () const
 
inline ::google::protobuf::UnknownFieldSet * mutable_unknown_fields ()
 
void Swap (WriteRegisterResponse *other)
 
void UnsafeArenaSwap (WriteRegisterResponse *other)
 
WriteRegisterResponseNew (::google::protobuf::Arena *arena=nullptr) const final
 
void CopyFrom (const WriteRegisterResponse &from)
 
void MergeFrom (const WriteRegisterResponse &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_message ()
 
const std::string & message () const
 
template<typename Arg_ = const std::string&, typename... Args_>
void set_message (Arg_ &&arg, Args_... args)
 
std::string * mutable_message ()
 
PROTOBUF_NODISCARD std::string * release_message ()
 
void set_allocated_message (std::string *ptr)
 
void clear_success ()
 
bool success () const
 
void set_success (bool value)
 
template<typename >
PROTOBUF_CONSTEXPR WriteRegisterResponse (::_pbi::ConstantInitialized)
 
template<typename Arg_ , typename... Args_>
PROTOBUF_ALWAYS_INLINE void set_message (Arg_ &&arg, Args_... args)
 

Static Public Member Functions

static const ::google::protobuf::Descriptor * descriptor ()
 
static const ::google::protobuf::Descriptor * GetDescriptor ()
 
static const ::google::protobuf::Reflection * GetReflection ()
 
static const WriteRegisterResponsedefault_instance ()
 
static const WriteRegisterResponseinternal_default_instance ()
 

Static Public Attributes

static constexpr int kIndexInFileMessages
 
static const ClassData _class_data_
 

Protected Member Functions

 WriteRegisterResponse (::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 (WriteRegisterResponse *other)
 
const std::string & _internal_message () const
 
PROTOBUF_ALWAYS_INLINE void _internal_set_message (const std::string &value)
 
std::string * _internal_mutable_message ()
 
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, 44, 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_5fhigh_2eproto
 
void swap (WriteRegisterResponse &a, WriteRegisterResponse &b)
 

Detailed Description

Definition at line 5722 of file daphne_control_high.pb.h.

Member Typedef Documentation

◆ DestructorSkippable_

◆ InternalArenaConstructable_

Member Enumeration Documentation

◆ anonymous enum

anonymous enum : int
Enumerator
kMessageFieldNumber 
kSuccessFieldNumber 

Definition at line 5849 of file daphne_control_high.pb.h.

Constructor & Destructor Documentation

◆ WriteRegisterResponse() [1/6]

daphne::WriteRegisterResponse::WriteRegisterResponse ( )
inline

◆ ~WriteRegisterResponse()

daphne::WriteRegisterResponse::~WriteRegisterResponse ( )
override

Definition at line 8408 of file daphne_control_high.pb.cc.

8408 {
8409 // @@protoc_insertion_point(destructor:daphne.WriteRegisterResponse)
8410 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
8411 SharedDtor();
8412}

◆ WriteRegisterResponse() [2/6]

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

◆ WriteRegisterResponse() [3/6]

daphne::WriteRegisterResponse::WriteRegisterResponse ( const WriteRegisterResponse & from)

Definition at line 8375 of file daphne_control_high.pb.cc.

8375 : ::google::protobuf::Message() {
8376 WriteRegisterResponse* const _this = this;
8377 (void)_this;
8378 new (&_impl_) Impl_{
8379 decltype(_impl_.message_){},
8380 decltype(_impl_.success_){},
8381 /*decltype(_impl_._cached_size_)*/ {},
8382 };
8383 _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
8384 from._internal_metadata_);
8385 _impl_.message_.InitDefault();
8386 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
8387 _impl_.message_.Set("", GetArenaForAllocation());
8388 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
8389 if (!from._internal_message().empty()) {
8390 _this->_impl_.message_.Set(from._internal_message(), _this->GetArenaForAllocation());
8391 }
8392 _this->_impl_.success_ = from._impl_.success_;
8393
8394 // @@protoc_insertion_point(copy_constructor:daphne.WriteRegisterResponse)
8395}
::google::protobuf::internal::ArenaStringPtr message_

◆ WriteRegisterResponse() [4/6]

daphne::WriteRegisterResponse::WriteRegisterResponse ( WriteRegisterResponse && from)
inlinenoexcept

Definition at line 5731 of file daphne_control_high.pb.h.

5733 *this = ::std::move(from);
5734 }

◆ WriteRegisterResponse() [5/6]

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

Definition at line 8370 of file daphne_control_high.pb.cc.

8371 : ::google::protobuf::Message(arena) {
8372 SharedCtor(arena);
8373 // @@protoc_insertion_point(arena_constructor:daphne.WriteRegisterResponse)
8374}
void SharedCtor(::google::protobuf::Arena *arena)

◆ WriteRegisterResponse() [6/6]

template<typename >
PROTOBUF_CONSTEXPR daphne::WriteRegisterResponse::WriteRegisterResponse ( ::_pbi::ConstantInitialized )

Definition at line 570 of file daphne_control_high.pb.cc.

571 : _impl_{
572 /*decltype(_impl_.message_)*/ {
573 &::_pbi::fixed_address_empty_string,
574 ::_pbi::ConstantInitialized{},
575 },
576 /*decltype(_impl_.success_)*/ false,
577 /*decltype(_impl_._cached_size_)*/ {},
578 } {}

Member Function Documentation

◆ _internal_message()

const std::string & daphne::WriteRegisterResponse::_internal_message ( ) const
inlineprivate

Definition at line 9779 of file daphne_control_high.pb.h.

9779 {
9780 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
9781 return _impl_.message_.Get();
9782}

◆ _internal_mutable_message()

std::string * daphne::WriteRegisterResponse::_internal_mutable_message ( )
inlineprivate

Definition at line 9788 of file daphne_control_high.pb.h.

9788 {
9789 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9790 ;
9791 return _impl_.message_.Mutable( GetArenaForAllocation());
9792}

◆ _internal_set_message()

void daphne::WriteRegisterResponse::_internal_set_message ( const std::string & value)
inlineprivate

Definition at line 9783 of file daphne_control_high.pb.h.

9783 {
9784 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9785 ;
9786 _impl_.message_.Set(value, GetArenaForAllocation());
9787}

◆ _internal_set_success()

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

Definition at line 9752 of file daphne_control_high.pb.h.

9752 {
9753 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9754 ;
9755 _impl_.success_ = value;
9756}

◆ _internal_success()

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

Definition at line 9748 of file daphne_control_high.pb.h.

9748 {
9749 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
9750 return _impl_.success_;
9751}

◆ _InternalParse()

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

Definition at line 8432 of file daphne_control_high.pb.cc.

8433 {
8434 ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header);
8435 return ptr;
8436}
static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 44, 2 > _table_

◆ _InternalSerialize()

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

Definition at line 8478 of file daphne_control_high.pb.cc.

8480 {
8481 // @@protoc_insertion_point(serialize_to_array_start:daphne.WriteRegisterResponse)
8482 ::uint32_t cached_has_bits = 0;
8483 (void)cached_has_bits;
8484
8485 // bool success = 1;
8486 if (this->_internal_success() != 0) {
8487 target = stream->EnsureSpace(target);
8488 target = ::_pbi::WireFormatLite::WriteBoolToArray(
8489 1, this->_internal_success(), target);
8490 }
8491
8492 // string message = 2;
8493 if (!this->_internal_message().empty()) {
8494 const std::string& _s = this->_internal_message();
8495 ::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
8496 _s.data(), static_cast<int>(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "daphne.WriteRegisterResponse.message");
8497 target = stream->WriteStringMaybeAliased(2, _s, target);
8498 }
8499
8500 if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
8501 target =
8502 ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
8503 _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
8504 }
8505 // @@protoc_insertion_point(serialize_to_array_end:daphne.WriteRegisterResponse)
8506 return target;
8507}
const std::string & _internal_message() const

◆ ByteSizeLong()

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

Definition at line 8509 of file daphne_control_high.pb.cc.

8509 {
8510// @@protoc_insertion_point(message_byte_size_start:daphne.WriteRegisterResponse)
8511 ::size_t total_size = 0;
8512
8513 ::uint32_t cached_has_bits = 0;
8514 // Prevent compiler warnings about cached_has_bits being unused
8515 (void) cached_has_bits;
8516
8517 // string message = 2;
8518 if (!this->_internal_message().empty()) {
8519 total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize(
8520 this->_internal_message());
8521 }
8522
8523 // bool success = 1;
8524 if (this->_internal_success() != 0) {
8525 total_size += 2;
8526 }
8527
8528 return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
8529}
mutable::google::protobuf::internal::CachedSize _cached_size_

◆ Clear()

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

Definition at line 8421 of file daphne_control_high.pb.cc.

8421 {
8422// @@protoc_insertion_point(message_clear_start:daphne.WriteRegisterResponse)
8423 ::uint32_t cached_has_bits = 0;
8424 // Prevent compiler warnings about cached_has_bits being unused
8425 (void) cached_has_bits;
8426
8427 _impl_.message_.ClearToEmpty();
8428 _impl_.success_ = false;
8429 _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
8430}

◆ clear_message()

void daphne::WriteRegisterResponse::clear_message ( )
inline

Definition at line 9759 of file daphne_control_high.pb.h.

9759 {
9760 _impl_.message_.ClearToEmpty();
9761}

◆ clear_success()

void daphne::WriteRegisterResponse::clear_success ( )
inline

Definition at line 9737 of file daphne_control_high.pb.h.

9737 {
9738 _impl_.success_ = false;
9739}

◆ CopyFrom()

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

Definition at line 8555 of file daphne_control_high.pb.cc.

8555 {
8556// @@protoc_insertion_point(class_specific_copy_from_start:daphne.WriteRegisterResponse)
8557 if (&from == this) return;
8558 Clear();
8559 MergeFrom(from);
8560}
void MergeFrom(const WriteRegisterResponse &from)
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final

◆ default_instance()

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

Definition at line 5770 of file daphne_control_high.pb.h.

5770 {
5771 return *internal_default_instance();
5772 }
static const WriteRegisterResponse * internal_default_instance()

◆ descriptor()

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

Definition at line 5761 of file daphne_control_high.pb.h.

5761 {
5762 return GetDescriptor();
5763 }
static const ::google::protobuf::Descriptor * GetDescriptor()

◆ FullMessageName()

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

Definition at line 5833 of file daphne_control_high.pb.h.

5833 {
5834 return "daphne.WriteRegisterResponse";
5835 }

◆ GetCachedSize()

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

Definition at line 5823 of file daphne_control_high.pb.h.

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

◆ GetClassData()

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

Definition at line 8535 of file daphne_control_high.pb.cc.

8535{ return &_class_data_; }

◆ GetDescriptor()

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

Definition at line 5764 of file daphne_control_high.pb.h.

5764 {
5765 return default_instance().GetMetadata().descriptor;
5766 }
::google::protobuf::Metadata GetMetadata() const final
static const WriteRegisterResponse & default_instance()

◆ GetMetadata()

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

Definition at line 8576 of file daphne_control_high.pb.cc.

8576 {
8577 return ::_pbi::AssignDescriptors(
8580}
::absl::once_flag descriptor_table_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto_once
::_pb::Metadata file_level_metadata_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto[30]
PROTOBUF_ATTRIBUTE_WEAKconst ::_pbi::DescriptorTable * descriptor_table_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto_getter()

◆ GetReflection()

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

Definition at line 5767 of file daphne_control_high.pb.h.

5767 {
5768 return default_instance().GetMetadata().reflection;
5769 }

◆ internal_default_instance()

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

Definition at line 5773 of file daphne_control_high.pb.h.

5773 {
5774 return reinterpret_cast<const WriteRegisterResponse*>(
5776 }
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 WriteRegisterResponseDefaultTypeInternal _WriteRegisterResponse_default_instance_

◆ InternalSwap()

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

Definition at line 8566 of file daphne_control_high.pb.cc.

8566 {
8567 using std::swap;
8568 auto* lhs_arena = GetArenaForAllocation();
8569 auto* rhs_arena = other->GetArenaForAllocation();
8570 _internal_metadata_.InternalSwap(&other->_internal_metadata_);
8571 ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.message_, lhs_arena,
8572 &other->_impl_.message_, rhs_arena);
8573 swap(_impl_.success_, other->_impl_.success_);
8574}
friend void swap(WriteRegisterResponse &a, WriteRegisterResponse &b)

◆ IsInitialized()

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

Definition at line 8562 of file daphne_control_high.pb.cc.

8562 {
8563 return true;
8564}

◆ MergeFrom()

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

Definition at line 5810 of file daphne_control_high.pb.h.

5810 {
5812 }
static void MergeImpl(::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)

◆ MergeImpl()

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

Definition at line 8538 of file daphne_control_high.pb.cc.

8538 {
8539 auto* const _this = static_cast<WriteRegisterResponse*>(&to_msg);
8540 auto& from = static_cast<const WriteRegisterResponse&>(from_msg);
8541 // @@protoc_insertion_point(class_specific_merge_from_start:daphne.WriteRegisterResponse)
8542 ABSL_DCHECK_NE(&from, _this);
8543 ::uint32_t cached_has_bits = 0;
8544 (void) cached_has_bits;
8545
8546 if (!from._internal_message().empty()) {
8547 _this->_internal_set_message(from._internal_message());
8548 }
8549 if (from._internal_success() != 0) {
8550 _this->_internal_set_success(from._internal_success());
8551 }
8552 _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_);
8553}

◆ message()

const std::string & daphne::WriteRegisterResponse::message ( ) const
inline

Definition at line 9762 of file daphne_control_high.pb.h.

9762 {
9763 // @@protoc_insertion_point(field_get:daphne.WriteRegisterResponse.message)
9764 return _internal_message();
9765}

◆ mutable_message()

std::string * daphne::WriteRegisterResponse::mutable_message ( )
inline

Definition at line 9774 of file daphne_control_high.pb.h.

9774 {
9775 std::string* _s = _internal_mutable_message();
9776 // @@protoc_insertion_point(field_mutable:daphne.WriteRegisterResponse.message)
9777 return _s;
9778}

◆ mutable_unknown_fields()

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

Definition at line 5757 of file daphne_control_high.pb.h.

5757 {
5758 return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
5759 }

◆ New()

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

Definition at line 5804 of file daphne_control_high.pb.h.

5804 {
5805 return CreateMaybeMessage<WriteRegisterResponse>(arena);
5806 }

◆ operator=() [1/2]

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

Definition at line 5736 of file daphne_control_high.pb.h.

5736 {
5737 CopyFrom(from);
5738 return *this;
5739 }
void CopyFrom(const WriteRegisterResponse &from)

◆ operator=() [2/2]

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

Definition at line 5740 of file daphne_control_high.pb.h.

5740 {
5741 if (this == &from) return *this;
5742 if (GetOwningArena() == from.GetOwningArena()
5743 #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
5744 && GetOwningArena() != nullptr
5745 #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
5746 ) {
5747 InternalSwap(&from);
5748 } else {
5749 CopyFrom(from);
5750 }
5751 return *this;
5752 }
void InternalSwap(WriteRegisterResponse *other)

◆ release_message()

std::string * daphne::WriteRegisterResponse::release_message ( )
inline

Definition at line 9793 of file daphne_control_high.pb.h.

9793 {
9794 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9795 // @@protoc_insertion_point(field_release:daphne.WriteRegisterResponse.message)
9796 return _impl_.message_.Release();
9797}

◆ set_allocated_message()

void daphne::WriteRegisterResponse::set_allocated_message ( std::string * ptr)
inline

Definition at line 9798 of file daphne_control_high.pb.h.

9798 {
9799 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9800 _impl_.message_.SetAllocated(value, GetArenaForAllocation());
9801 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
9802 if (_impl_.message_.IsDefault()) {
9803 _impl_.message_.Set("", GetArenaForAllocation());
9804 }
9805 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
9806 // @@protoc_insertion_point(field_set_allocated:daphne.WriteRegisterResponse.message)
9807}

◆ set_message() [1/2]

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

◆ set_message() [2/2]

template<typename Arg_ , typename... Args_>
PROTOBUF_ALWAYS_INLINE void daphne::WriteRegisterResponse::set_message ( Arg_ && arg,
Args_... args )
inline

Definition at line 9767 of file daphne_control_high.pb.h.

9768 {
9769 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
9770 ;
9771 _impl_.message_.Set(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
9772 // @@protoc_insertion_point(field_set:daphne.WriteRegisterResponse.message)
9773}

◆ set_success()

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

Definition at line 9744 of file daphne_control_high.pb.h.

9744 {
9745 _internal_set_success(value);
9746 // @@protoc_insertion_point(field_set:daphne.WriteRegisterResponse.success)
9747}

◆ SetCachedSize()

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

Definition at line 8417 of file daphne_control_high.pb.cc.

8417 {
8418 _impl_._cached_size_.Set(size);
8419}

◆ SharedCtor()

void daphne::WriteRegisterResponse::SharedCtor ( ::google::protobuf::Arena * arena)
inlineprivate

Definition at line 8396 of file daphne_control_high.pb.cc.

8396 {
8397 (void)arena;
8398 new (&_impl_) Impl_{
8399 decltype(_impl_.message_){},
8400 decltype(_impl_.success_){false},
8401 /*decltype(_impl_._cached_size_)*/ {},
8402 };
8403 _impl_.message_.InitDefault();
8404 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
8405 _impl_.message_.Set("", GetArenaForAllocation());
8406 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
8407}

◆ SharedDtor()

void daphne::WriteRegisterResponse::SharedDtor ( )
inlineprivate

Definition at line 8413 of file daphne_control_high.pb.cc.

8413 {
8414 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
8415 _impl_.message_.Destroy();
8416}

◆ success()

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

Definition at line 9740 of file daphne_control_high.pb.h.

9740 {
9741 // @@protoc_insertion_point(field_get:daphne.WriteRegisterResponse.success)
9742 return _internal_success();
9743}

◆ Swap()

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

Definition at line 5783 of file daphne_control_high.pb.h.

5783 {
5784 if (other == this) return;
5785 #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
5786 if (GetOwningArena() != nullptr &&
5787 GetOwningArena() == other->GetOwningArena()) {
5788 #else // PROTOBUF_FORCE_COPY_IN_SWAP
5789 if (GetOwningArena() == other->GetOwningArena()) {
5790 #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
5791 InternalSwap(other);
5792 } else {
5793 ::google::protobuf::internal::GenericSwap(this, other);
5794 }
5795 }

◆ unknown_fields()

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

Definition at line 5754 of file daphne_control_high.pb.h.

5754 {
5755 return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
5756 }

◆ UnsafeArenaSwap()

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

Definition at line 5796 of file daphne_control_high.pb.h.

5796 {
5797 if (other == this) return;
5798 ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
5799 InternalSwap(other);
5800 }

Friends And Related Symbol Documentation

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

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

Definition at line 5885 of file daphne_control_high.pb.h.

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

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

Definition at line 5832 of file daphne_control_high.pb.h.

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

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

Definition at line 5883 of file daphne_control_high.pb.h.

◆ ::TableStruct_daphnemodules_2fdaphne_5fcontrol_5fhigh_2eproto

◆ swap

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

Definition at line 5780 of file daphne_control_high.pb.h.

5780 {
5781 a.Swap(&b);
5782 }

Member Data Documentation

◆ [union]

◆ _class_data_

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

Definition at line 5840 of file daphne_control_high.pb.h.

◆ _impl_

Impl_ daphne::WriteRegisterResponse::_impl_

Definition at line 5894 of file daphne_control_high.pb.h.

◆ _table_

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

Definition at line 5884 of file daphne_control_high.pb.h.

◆ kIndexInFileMessages

int daphne::WriteRegisterResponse::kIndexInFileMessages
staticconstexpr
Initial value:
=
27

Definition at line 5777 of file daphne_control_high.pb.h.


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