Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
4573131e350ef2c3bd69b6cf0ddcb3abcd8460a3
/
.
/
crates
/
protobuf
/
src
/
oneof_full.rs
blob: 4bd84665cca19f6b91e441b90b0fc06f289fb066 [
file
] [
log
] [
blame
]
use
crate
::
reflect
::
OneofDescriptor
;
use
crate
::
Oneof
;
/// Implemented by all oneof types when lite runtime is not enabled.
pub
trait
OneofFull
:
Oneof
{
/// Descriptor object for this oneof.
fn
descriptor
()
->
OneofDescriptor
;
}