[][src]Struct rusoto_securityhub::Note

pub struct Note {
    pub text: String,
    pub updated_at: String,
    pub updated_by: String,
}

A user-defined note added to a finding.

Fields

text: String

The text of a note.

updated_at: String

The timestamp of when the note was updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

updated_by: String

The principal that created a note.

Trait Implementations

impl Clone for Note[src]

impl Debug for Note[src]

impl Default for Note[src]

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

impl PartialEq<Note> for Note[src]

impl Serialize for Note[src]

impl StructuralPartialEq for Note[src]

Auto Trait Implementations

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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.