pub trait ProtobufValue: Any + 'static {
    fn as_ref(&self) -> ProtobufValueRef<'_>;

    fn as_any(&self) -> &dyn Any { ... }
    fn is_non_zero(&self) -> bool { ... }
    fn as_ref_copy(&self) -> ProtobufValueRef<'static> { ... }
}

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§