[][src]Struct google_healthcare1_beta1::Finding

pub struct Finding {
    pub quote: Option<String>,
    pub end: Option<String>,
    pub info_type: Option<String>,
    pub start: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

quote: Option<String>

The snippet of the sensitive text. This field is only populated during deidentification if store_quote is set to true in DeidentifyConfig.

end: Option<String>

Zero-based ending index of the found text, exclusively.

info_type: Option<String>

The type of information stored in this text range. For example, HumanName, BirthDate, or Address.

start: Option<String>

Zero-based starting index of the found text, inclusively.

Trait Implementations

impl Clone for Finding[src]

impl Debug for Finding[src]

impl Default for Finding[src]

impl<'de> Deserialize<'de> for Finding[src]

impl Part for Finding[src]

impl Serialize for Finding[src]

Auto Trait Implementations

impl RefUnwindSafe for Finding

impl Send for Finding

impl Sync for Finding

impl Unpin for Finding

impl UnwindSafe for Finding

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any