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

#include <wib.pb.h>

Inheritance diagram for wib::Status:
[legend]
Collaboration diagram for wib::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)
 
template<typename >
PROTOBUF_CONSTEXPR Status (::_pbi::ConstantInitialized)
 
template<typename Arg_ , typename... Args_>
PROTOBUF_ALWAYS_INLINE void set_extra (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 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_wib_2eproto
 
void swap (Status &a, Status &b)
 

Detailed Description

Definition at line 6550 of file wib.pb.h.

Member Typedef Documentation

◆ DestructorSkippable_

Definition at line 6715 of file wib.pb.h.

◆ InternalArenaConstructable_

Definition at line 6714 of file wib.pb.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum : int
Enumerator
kExtraFieldNumber 
kSuccessFieldNumber 

Definition at line 6677 of file wib.pb.h.

6677 : int {
6680 };
@ kExtraFieldNumber
Definition wib.pb.h:6678
@ kSuccessFieldNumber
Definition wib.pb.h:6679

Constructor & Destructor Documentation

◆ Status() [1/6]

wib::Status::Status ( )
inline

Definition at line 6553 of file wib.pb.h.

6553: Status(nullptr) {}

◆ ~Status()

wib::Status::~Status ( )
override

Definition at line 8570 of file wib.pb.cc.

8570 {
8571 // @@protoc_insertion_point(destructor:wib.Status)
8572 _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>();
8573 SharedDtor();
8574}
void SharedDtor()
Definition wib.pb.cc:8575

◆ Status() [2/6]

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

◆ Status() [3/6]

wib::Status::Status ( const Status & from)

Definition at line 8537 of file wib.pb.cc.

8537 : ::google::protobuf::Message() {
8538 Status* const _this = this;
8539 (void)_this;
8540 new (&_impl_) Impl_{
8541 decltype(_impl_.extra_){},
8542 decltype(_impl_.success_){},
8543 /*decltype(_impl_._cached_size_)*/ {},
8544 };
8545 _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(
8546 from._internal_metadata_);
8547 _impl_.extra_.InitDefault();
8548 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
8549 _impl_.extra_.Set("", GetArenaForAllocation());
8550 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
8551 if (!from._internal_extra().empty()) {
8552 _this->_impl_.extra_.Set(from._internal_extra(), _this->GetArenaForAllocation());
8553 }
8554 _this->_impl_.success_ = from._impl_.success_;
8555
8556 // @@protoc_insertion_point(copy_constructor:wib.Status)
8557}
Impl_ _impl_
Definition wib.pb.h:6722
::google::protobuf::internal::ArenaStringPtr extra_
Definition wib.pb.h:6717

◆ Status() [4/6]

wib::Status::Status ( Status && from)
inlinenoexcept

Definition at line 6559 of file wib.pb.h.

6560 : Status() {
6561 *this = ::std::move(from);
6562 }

◆ Status() [5/6]

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

Definition at line 8532 of file wib.pb.cc.

8533 : ::google::protobuf::Message(arena) {
8534 SharedCtor(arena);
8535 // @@protoc_insertion_point(arena_constructor:wib.Status)
8536}
void SharedCtor(::google::protobuf::Arena *arena)
Definition wib.pb.cc:8558

◆ Status() [6/6]

template<typename >
PROTOBUF_CONSTEXPR wib::Status::Status ( ::_pbi::ConstantInitialized )

Definition at line 652 of file wib.pb.cc.

653 : _impl_{
654 /*decltype(_impl_.extra_)*/ {
655 &::_pbi::fixed_address_empty_string,
656 ::_pbi::ConstantInitialized{},
657 },
658 /*decltype(_impl_.success_)*/ false,
659 /*decltype(_impl_._cached_size_)*/ {},
660 } {}

Member Function Documentation

◆ _internal_extra()

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

Definition at line 10666 of file wib.pb.h.

10666 {
10667 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
10668 return _impl_.extra_.Get();
10669}

◆ _internal_mutable_extra()

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

Definition at line 10675 of file wib.pb.h.

10675 {
10676 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
10677 ;
10678 return _impl_.extra_.Mutable( GetArenaForAllocation());
10679}

◆ _internal_set_extra()

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

Definition at line 10670 of file wib.pb.h.

10670 {
10671 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
10672 ;
10673 _impl_.extra_.Set(value, GetArenaForAllocation());
10674}

◆ _internal_set_success()

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

Definition at line 10639 of file wib.pb.h.

10639 {
10640 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
10641 ;
10642 _impl_.success_ = value;
10643}

◆ _internal_success()

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

Definition at line 10635 of file wib.pb.h.

10635 {
10636 PROTOBUF_TSAN_READ(&_impl_._tsan_detect_race);
10637 return _impl_.success_;
10638}

◆ _InternalParse()

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

Definition at line 8594 of file wib.pb.cc.

8595 {
8596 ptr = ::_pbi::TcParser::ParseLoop(this, ptr, ctx, &_table_.header);
8597 return ptr;
8598}
static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, 0, 2 > _table_
Definition wib.pb.h:6712

◆ _InternalSerialize()

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

Definition at line 8637 of file wib.pb.cc.

8639 {
8640 // @@protoc_insertion_point(serialize_to_array_start:wib.Status)
8641 ::uint32_t cached_has_bits = 0;
8642 (void)cached_has_bits;
8643
8644 // bool success = 1;
8645 if (this->_internal_success() != 0) {
8646 target = stream->EnsureSpace(target);
8647 target = ::_pbi::WireFormatLite::WriteBoolToArray(
8648 1, this->_internal_success(), target);
8649 }
8650
8651 // bytes extra = 2;
8652 if (!this->_internal_extra().empty()) {
8653 const std::string& _s = this->_internal_extra();
8654 target = stream->WriteBytesMaybeAliased(2, _s, target);
8655 }
8656
8657 if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
8658 target =
8659 ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
8660 _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream);
8661 }
8662 // @@protoc_insertion_point(serialize_to_array_end:wib.Status)
8663 return target;
8664}
const std::string & _internal_extra() const
Definition wib.pb.h:10666
bool _internal_success() const
Definition wib.pb.h:10635

◆ ByteSizeLong()

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

Definition at line 8666 of file wib.pb.cc.

8666 {
8667// @@protoc_insertion_point(message_byte_size_start:wib.Status)
8668 ::size_t total_size = 0;
8669
8670 ::uint32_t cached_has_bits = 0;
8671 // Prevent compiler warnings about cached_has_bits being unused
8672 (void) cached_has_bits;
8673
8674 // bytes extra = 2;
8675 if (!this->_internal_extra().empty()) {
8676 total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize(
8677 this->_internal_extra());
8678 }
8679
8680 // bool success = 1;
8681 if (this->_internal_success() != 0) {
8682 total_size += 2;
8683 }
8684
8685 return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
8686}
mutable::google::protobuf::internal::CachedSize _cached_size_
Definition wib.pb.h:6719

◆ Clear()

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

Definition at line 8583 of file wib.pb.cc.

8583 {
8584// @@protoc_insertion_point(message_clear_start:wib.Status)
8585 ::uint32_t cached_has_bits = 0;
8586 // Prevent compiler warnings about cached_has_bits being unused
8587 (void) cached_has_bits;
8588
8589 _impl_.extra_.ClearToEmpty();
8590 _impl_.success_ = false;
8591 _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>();
8592}

◆ clear_extra()

void wib::Status::clear_extra ( )
inline

Definition at line 10646 of file wib.pb.h.

10646 {
10647 _impl_.extra_.ClearToEmpty();
10648}

◆ clear_success()

void wib::Status::clear_success ( )
inline

Definition at line 10624 of file wib.pb.h.

10624 {
10625 _impl_.success_ = false;
10626}

◆ CopyFrom()

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

Definition at line 8712 of file wib.pb.cc.

8712 {
8713// @@protoc_insertion_point(class_specific_copy_from_start:wib.Status)
8714 if (&from == this) return;
8715 Clear();
8716 MergeFrom(from);
8717}
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final
Definition wib.pb.cc:8583
void MergeFrom(const Status &from)
Definition wib.pb.h:6638

◆ default_instance()

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

Definition at line 6598 of file wib.pb.h.

6598 {
6599 return *internal_default_instance();
6600 }
static const Status * internal_default_instance()
Definition wib.pb.h:6601

◆ descriptor()

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

Definition at line 6589 of file wib.pb.h.

6589 {
6590 return GetDescriptor();
6591 }
static const ::google::protobuf::Descriptor * GetDescriptor()
Definition wib.pb.h:6592

◆ extra()

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

Definition at line 10649 of file wib.pb.h.

10649 {
10650 // @@protoc_insertion_point(field_get:wib.Status.extra)
10651 return _internal_extra();
10652}

◆ FullMessageName()

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

Definition at line 6661 of file wib.pb.h.

6661 {
6662 return "wib.Status";
6663 }

◆ GetCachedSize()

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

Definition at line 6651 of file wib.pb.h.

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

◆ GetClassData()

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

Definition at line 8692 of file wib.pb.cc.

8692{ return &_class_data_; }
static const ClassData _class_data_
Definition wib.pb.h:6668

◆ GetDescriptor()

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

Definition at line 6592 of file wib.pb.h.

6592 {
6593 return default_instance().GetMetadata().descriptor;
6594 }
::google::protobuf::Metadata GetMetadata() const final
Definition wib.pb.cc:8733
static const Status & default_instance()
Definition wib.pb.h:6598

◆ GetMetadata()

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

Definition at line 8733 of file wib.pb.cc.

8733 {
8734 return ::_pbi::AssignDescriptors(
8737}
PROTOBUF_ATTRIBUTE_WEAKconst ::_pbi::DescriptorTable * descriptor_table_wib_2eproto_getter()
Definition wib.pb.cc:1346
::absl::once_flag descriptor_table_wib_2eproto_once
Definition wib.pb.cc:1316
::_pb::Metadata file_level_metadata_wib_2eproto[37]
Definition wib.pb.cc:710

◆ GetReflection()

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

Definition at line 6595 of file wib.pb.h.

6595 {
6596 return default_instance().GetMetadata().reflection;
6597 }

◆ internal_default_instance()

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

Definition at line 6601 of file wib.pb.h.

6601 {
6602 return reinterpret_cast<const Status*>(
6604 }
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 StatusDefaultTypeInternal _Status_default_instance_
Definition wib.pb.cc:670

◆ InternalSwap()

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

Definition at line 8723 of file wib.pb.cc.

8723 {
8724 using std::swap;
8725 auto* lhs_arena = GetArenaForAllocation();
8726 auto* rhs_arena = other->GetArenaForAllocation();
8727 _internal_metadata_.InternalSwap(&other->_internal_metadata_);
8728 ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.extra_, lhs_arena,
8729 &other->_impl_.extra_, rhs_arena);
8730 swap(_impl_.success_, other->_impl_.success_);
8731}
friend void swap(Status &a, Status &b)
Definition wib.pb.h:6608

◆ IsInitialized()

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

Definition at line 8719 of file wib.pb.cc.

8719 {
8720 return true;
8721}

◆ MergeFrom()

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

Definition at line 6638 of file wib.pb.h.

6638 {
6639 Status::MergeImpl(*this, from);
6640 }
static void MergeImpl(::google::protobuf::Message &to_msg, const ::google::protobuf::Message &from_msg)
Definition wib.pb.cc:8695

◆ MergeImpl()

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

Definition at line 8695 of file wib.pb.cc.

8695 {
8696 auto* const _this = static_cast<Status*>(&to_msg);
8697 auto& from = static_cast<const Status&>(from_msg);
8698 // @@protoc_insertion_point(class_specific_merge_from_start:wib.Status)
8699 ABSL_DCHECK_NE(&from, _this);
8700 ::uint32_t cached_has_bits = 0;
8701 (void) cached_has_bits;
8702
8703 if (!from._internal_extra().empty()) {
8704 _this->_internal_set_extra(from._internal_extra());
8705 }
8706 if (from._internal_success() != 0) {
8707 _this->_internal_set_success(from._internal_success());
8708 }
8709 _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_);
8710}

◆ mutable_extra()

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

Definition at line 10661 of file wib.pb.h.

10661 {
10662 std::string* _s = _internal_mutable_extra();
10663 // @@protoc_insertion_point(field_mutable:wib.Status.extra)
10664 return _s;
10665}
std::string * _internal_mutable_extra()
Definition wib.pb.h:10675

◆ mutable_unknown_fields()

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

Definition at line 6585 of file wib.pb.h.

6585 {
6586 return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>();
6587 }

◆ New()

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

Definition at line 6632 of file wib.pb.h.

6632 {
6633 return CreateMaybeMessage<Status>(arena);
6634 }

◆ operator=() [1/2]

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

Definition at line 6564 of file wib.pb.h.

6564 {
6565 CopyFrom(from);
6566 return *this;
6567 }
void CopyFrom(const Status &from)
Definition wib.pb.cc:8712

◆ operator=() [2/2]

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

Definition at line 6568 of file wib.pb.h.

6568 {
6569 if (this == &from) return *this;
6570 if (GetOwningArena() == from.GetOwningArena()
6571 #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
6572 && GetOwningArena() != nullptr
6573 #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
6574 ) {
6575 InternalSwap(&from);
6576 } else {
6577 CopyFrom(from);
6578 }
6579 return *this;
6580 }
void InternalSwap(Status *other)
Definition wib.pb.cc:8723

◆ release_extra()

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

Definition at line 10680 of file wib.pb.h.

10680 {
10681 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
10682 // @@protoc_insertion_point(field_release:wib.Status.extra)
10683 return _impl_.extra_.Release();
10684}

◆ set_allocated_extra()

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

Definition at line 10685 of file wib.pb.h.

10685 {
10686 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
10687 _impl_.extra_.SetAllocated(value, GetArenaForAllocation());
10688 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
10689 if (_impl_.extra_.IsDefault()) {
10690 _impl_.extra_.Set("", GetArenaForAllocation());
10691 }
10692 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
10693 // @@protoc_insertion_point(field_set_allocated:wib.Status.extra)
10694}

◆ set_extra() [1/2]

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

◆ set_extra() [2/2]

template<typename Arg_ , typename... Args_>
PROTOBUF_ALWAYS_INLINE void wib::Status::set_extra ( Arg_ && arg,
Args_... args )
inline

Definition at line 10654 of file wib.pb.h.

10655 {
10656 PROTOBUF_TSAN_WRITE(&_impl_._tsan_detect_race);
10657 ;
10658 _impl_.extra_.SetBytes(static_cast<Arg_&&>(arg), args..., GetArenaForAllocation());
10659 // @@protoc_insertion_point(field_set:wib.Status.extra)
10660}

◆ set_success()

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

Definition at line 10631 of file wib.pb.h.

10631 {
10632 _internal_set_success(value);
10633 // @@protoc_insertion_point(field_set:wib.Status.success)
10634}
void _internal_set_success(bool value)
Definition wib.pb.h:10639

◆ SetCachedSize()

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

Definition at line 8579 of file wib.pb.cc.

8579 {
8580 _impl_._cached_size_.Set(size);
8581}

◆ SharedCtor()

void wib::Status::SharedCtor ( ::google::protobuf::Arena * arena)
inlineprivate

Definition at line 8558 of file wib.pb.cc.

8558 {
8559 (void)arena;
8560 new (&_impl_) Impl_{
8561 decltype(_impl_.extra_){},
8562 decltype(_impl_.success_){false},
8563 /*decltype(_impl_._cached_size_)*/ {},
8564 };
8565 _impl_.extra_.InitDefault();
8566 #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
8567 _impl_.extra_.Set("", GetArenaForAllocation());
8568 #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
8569}

◆ SharedDtor()

void wib::Status::SharedDtor ( )
inlineprivate

Definition at line 8575 of file wib.pb.cc.

8575 {
8576 ABSL_DCHECK(GetArenaForAllocation() == nullptr);
8577 _impl_.extra_.Destroy();
8578}

◆ success()

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

Definition at line 10627 of file wib.pb.h.

10627 {
10628 // @@protoc_insertion_point(field_get:wib.Status.success)
10629 return _internal_success();
10630}

◆ Swap()

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

Definition at line 6611 of file wib.pb.h.

6611 {
6612 if (other == this) return;
6613 #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
6614 if (GetOwningArena() != nullptr &&
6615 GetOwningArena() == other->GetOwningArena()) {
6616 #else // PROTOBUF_FORCE_COPY_IN_SWAP
6617 if (GetOwningArena() == other->GetOwningArena()) {
6618 #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
6619 InternalSwap(other);
6620 } else {
6621 ::google::protobuf::internal::GenericSwap(this, other);
6622 }
6623 }

◆ unknown_fields()

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

Definition at line 6582 of file wib.pb.h.

6582 {
6583 return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance);
6584 }

◆ UnsafeArenaSwap()

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

Definition at line 6624 of file wib.pb.h.

6624 {
6625 if (other == this) return;
6626 ABSL_DCHECK(GetOwningArena() == other->GetOwningArena());
6627 InternalSwap(other);
6628 }

Friends And Related Symbol Documentation

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

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

Definition at line 6713 of file wib.pb.h.

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

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

Definition at line 6660 of file wib.pb.h.

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

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

Definition at line 6711 of file wib.pb.h.

◆ ::TableStruct_wib_2eproto

friend struct ::TableStruct_wib_2eproto
friend

Definition at line 6723 of file wib.pb.h.

◆ swap

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

Definition at line 6608 of file wib.pb.h.

6608 {
6609 a.Swap(&b);
6610 }

Member Data Documentation

◆ [union]

union { ... } wib::Status

◆ _class_data_

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

Definition at line 6668 of file wib.pb.h.

◆ _impl_

Impl_ wib::Status::_impl_

Definition at line 6722 of file wib.pb.h.

◆ _table_

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

Definition at line 6712 of file wib.pb.h.

◆ kIndexInFileMessages

int wib::Status::kIndexInFileMessages
staticconstexpr
Initial value:
=
34

Definition at line 6605 of file wib.pb.h.


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