pub struct HistoricalPerson {Show 17 fields
pub id: u64,
pub resource_uri: HistoricalPersonUri,
pub name: String,
pub name_from_draft: String,
pub biography: String,
pub ascii: String,
pub ascii_short: Option<String>,
pub time: DateTime<Utc>,
pub photo: Option<String>,
pub photo_thumb: Option<String>,
pub user: String,
pub consent: Option<bool>,
pub history_change_reason: Option<String>,
pub history_user: String,
pub history_type: String,
pub history_id: u64,
pub history_date: DateTime<Utc>,
}
Expand description
A historical person in the IETF datatracker.
Fields§
§id: u64
§resource_uri: HistoricalPersonUri
§name: String
§name_from_draft: String
§biography: String
§ascii: String
§ascii_short: Option<String>
§time: DateTime<Utc>
§photo: Option<String>
§photo_thumb: Option<String>
§user: String
§consent: Option<bool>
§history_change_reason: Option<String>
§history_user: String
§history_type: String
§history_id: u64
§history_date: DateTime<Utc>
Trait Implementations§
Source§impl Debug for HistoricalPerson
impl Debug for HistoricalPerson
Source§impl<'de> Deserialize<'de> for HistoricalPerson
impl<'de> Deserialize<'de> for HistoricalPerson
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
Auto Trait Implementations§
impl Freeze for HistoricalPerson
impl RefUnwindSafe for HistoricalPerson
impl Send for HistoricalPerson
impl Sync for HistoricalPerson
impl Unpin for HistoricalPerson
impl UnwindSafe for HistoricalPerson
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more