#[repr(i32)]pub enum RefKind {
REF_KIND_UNSPECIFIED = 0,
REF_KIND_INTERNAL = 1,
REF_KIND_EXTERNAL = 2,
REF_KIND_COMPONENT = 3,
REF_KIND_INLINE = 4,
}Variants§
REF_KIND_UNSPECIFIED = 0
REF_KIND_INTERNAL = 1
REF_KIND_EXTERNAL = 2
REF_KIND_COMPONENT = 3
REF_KIND_INLINE = 4
Trait Implementations§
impl Copy for RefKind
Source§impl Enumeration for RefKind
impl Enumeration for RefKind
Source§fn proto_name(&self) -> &'static str
fn proto_name(&self) -> &'static str
The name of this enum variant as it appears in the
.proto file.impl Eq for RefKind
impl StructuralPartialEq for RefKind
Auto Trait Implementations§
impl Freeze for RefKind
impl RefUnwindSafe for RefKind
impl Send for RefKind
impl Sync for RefKind
impl Unpin for RefKind
impl UnsafeUnpin for RefKind
impl UnwindSafe for RefKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more