pub struct DurationRules {
pub required: Option<bool>,
pub const: Option<Duration>,
pub lt: Option<Duration>,
pub lte: Option<Duration>,
pub gt: Option<Duration>,
pub gte: Option<Duration>,
pub in: Vec<Duration>,
pub not_in: Vec<Duration>,
}
Expand description
DurationRules describe the constraints applied exclusively to the
google.protobuf.Duration
well-known type
Fields§
§required: Option<bool>
Required specifies that this field must be set
const: Option<Duration>
Const specifies that this field must be exactly the specified value
lt: Option<Duration>
Lt specifies that this field must be less than the specified value, exclusive
lte: Option<Duration>
Lt specifies that this field must be less than the specified value, inclusive
gt: Option<Duration>
Gt specifies that this field must be greater than the specified value, exclusive
gte: Option<Duration>
Gte specifies that this field must be greater than the specified value, inclusive
in: Vec<Duration>
In specifies that this field must be equal to one of the specified values
not_in: Vec<Duration>
NotIn specifies that this field cannot be equal to one of the specified values
Implementations§
Trait Implementations§
Source§impl Clone for DurationRules
impl Clone for DurationRules
Source§fn clone(&self) -> DurationRules
fn clone(&self) -> DurationRules
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DurationRules
impl Debug for DurationRules
Source§impl Default for DurationRules
impl Default for DurationRules
Source§impl Message for DurationRules
impl Message for DurationRules
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.Source§impl PartialEq for DurationRules
impl PartialEq for DurationRules
Source§impl ReflectMessage for DurationRules
impl ReflectMessage for DurationRules
Source§fn descriptor(&self) -> MessageDescriptor
fn descriptor(&self) -> MessageDescriptor
Gets a
MessageDescriptor
describing the type of this message.Source§fn transcode_to_dynamic(&self) -> DynamicMessagewhere
Self: Sized,
fn transcode_to_dynamic(&self) -> DynamicMessagewhere
Self: Sized,
Converts this message into an instance of
DynamicMessage
by going
through the byte representation.impl StructuralPartialEq for DurationRules
Auto Trait Implementations§
impl Freeze for DurationRules
impl RefUnwindSafe for DurationRules
impl Send for DurationRules
impl Sync for DurationRules
impl Unpin for DurationRules
impl UnwindSafe for DurationRules
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