pub struct GooglePrivacyDlpV2Range {
pub end: Option<i64>,
pub start: Option<i64>,
}Expand description
Generic half-open interval [start, end)
This type is not used in any activity, and only used as part of another schema.
Fields§
§end: Option<i64>Index of the last character of the range (exclusive).
start: Option<i64>Index of the first character of the range (inclusive).
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2Range
impl Clone for GooglePrivacyDlpV2Range
Source§fn clone(&self) -> GooglePrivacyDlpV2Range
fn clone(&self) -> GooglePrivacyDlpV2Range
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 GooglePrivacyDlpV2Range
impl Debug for GooglePrivacyDlpV2Range
Source§impl Default for GooglePrivacyDlpV2Range
impl Default for GooglePrivacyDlpV2Range
Source§fn default() -> GooglePrivacyDlpV2Range
fn default() -> GooglePrivacyDlpV2Range
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Range
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Range
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GooglePrivacyDlpV2Range
impl Serialize for GooglePrivacyDlpV2Range
impl Part for GooglePrivacyDlpV2Range
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2Range
impl RefUnwindSafe for GooglePrivacyDlpV2Range
impl Send for GooglePrivacyDlpV2Range
impl Sync for GooglePrivacyDlpV2Range
impl Unpin for GooglePrivacyDlpV2Range
impl UnwindSafe for GooglePrivacyDlpV2Range
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