Enum google_api_proto::google::api::FieldBehavior
source · #[repr(i32)]pub enum FieldBehavior {
Unspecified = 0,
Optional = 1,
Required = 2,
OutputOnly = 3,
InputOnly = 4,
Immutable = 5,
UnorderedList = 6,
NonEmptyDefault = 7,
Identifier = 8,
}
Expand description
An indicator of the behavior of a given field (for example, that a field is required in requests, or given as output but ignored as input). This does not change the behavior in protocol buffers itself; it only denotes the behavior and may affect how API tooling handles the field.
Note: This enum may receive new values in the future.
Variants§
Unspecified = 0
Conventional default for enums. Do not use this.
Optional = 1
Specifically denotes a field as optional. While all fields in protocol buffers are optional, this may be specified for emphasis if appropriate.
Required = 2
Denotes a field as required.
This indicates that the field must be provided as part of the request,
and failure to do so will cause an error (usually INVALID_ARGUMENT
).
OutputOnly = 3
Denotes a field as output only. This indicates that the field is provided in responses, but including the field in a request does nothing (the server must ignore it and must not throw an error as a result of the field’s presence).
InputOnly = 4
Denotes a field as input only. This indicates that the field is provided in requests, and the corresponding field is not included in output.
Immutable = 5
Denotes a field as immutable. This indicates that the field may be set once in a request to create a resource, but may not be changed thereafter.
UnorderedList = 6
Denotes that a (repeated) field is an unordered list. This indicates that the service may provide the elements of the list in any arbitrary order, rather than the order the user originally provided. Additionally, the list’s order may or may not be stable.
NonEmptyDefault = 7
Denotes that this field returns a non-empty default value if not set. This indicates that if the user provides the empty value in a request, a non-empty value will be returned. The user will not be aware of what non-empty value to expect.
Identifier = 8
Denotes that the field in a resource (a message annotated with
google.api.resource) is used in the resource name to uniquely identify the
resource. For AIP-compliant APIs, this should only be applied to the
name
field on the resource.
This behavior should not be applied to references to other resources within the message.
The identifier field of resources often have different field behavior
depending on the request it is embedded in (e.g. for Create methods name
is optional and unused, while for Update methods it is required). Instead
of method-specific annotations, only IDENTIFIER
is required.
Implementations§
source§impl FieldBehavior
impl FieldBehavior
source§impl FieldBehavior
impl FieldBehavior
sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for FieldBehavior
impl Clone for FieldBehavior
source§fn clone(&self) -> FieldBehavior
fn clone(&self) -> FieldBehavior
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FieldBehavior
impl Debug for FieldBehavior
source§impl Default for FieldBehavior
impl Default for FieldBehavior
source§fn default() -> FieldBehavior
fn default() -> FieldBehavior
source§impl From<FieldBehavior> for i32
impl From<FieldBehavior> for i32
source§fn from(value: FieldBehavior) -> i32
fn from(value: FieldBehavior) -> i32
source§impl Hash for FieldBehavior
impl Hash for FieldBehavior
source§impl Ord for FieldBehavior
impl Ord for FieldBehavior
source§fn cmp(&self, other: &FieldBehavior) -> Ordering
fn cmp(&self, other: &FieldBehavior) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for FieldBehavior
impl PartialEq for FieldBehavior
source§fn eq(&self, other: &FieldBehavior) -> bool
fn eq(&self, other: &FieldBehavior) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for FieldBehavior
impl PartialOrd for FieldBehavior
source§fn partial_cmp(&self, other: &FieldBehavior) -> Option<Ordering>
fn partial_cmp(&self, other: &FieldBehavior) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl TryFrom<i32> for FieldBehavior
impl TryFrom<i32> for FieldBehavior
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<FieldBehavior, UnknownEnumValue>
fn try_from(value: i32) -> Result<FieldBehavior, UnknownEnumValue>
impl Copy for FieldBehavior
impl Eq for FieldBehavior
impl StructuralPartialEq for FieldBehavior
Auto Trait Implementations§
impl Freeze for FieldBehavior
impl RefUnwindSafe for FieldBehavior
impl Send for FieldBehavior
impl Sync for FieldBehavior
impl Unpin for FieldBehavior
impl UnwindSafe for FieldBehavior
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request