pub struct ReportHistoryFaction {
pub id: FactionId,
pub name: String,
pub joined: DateTime<Utc>,
pub left: Option<DateTime<Utc>>,
}
Fields§
§id: FactionId
§name: String
§joined: DateTime<Utc>
§left: Option<DateTime<Utc>>
Trait Implementations§
Source§impl Clone for ReportHistoryFaction
impl Clone for ReportHistoryFaction
Source§fn clone(&self) -> ReportHistoryFaction
fn clone(&self) -> ReportHistoryFaction
Returns a copy 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 ReportHistoryFaction
impl Debug for ReportHistoryFaction
Source§impl<'de> Deserialize<'de> for ReportHistoryFaction
impl<'de> Deserialize<'de> for ReportHistoryFaction
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 PartialEq for ReportHistoryFaction
impl PartialEq for ReportHistoryFaction
impl StructuralPartialEq for ReportHistoryFaction
Auto Trait Implementations§
impl Freeze for ReportHistoryFaction
impl RefUnwindSafe for ReportHistoryFaction
impl Send for ReportHistoryFaction
impl Sync for ReportHistoryFaction
impl Unpin for ReportHistoryFaction
impl UnwindSafe for ReportHistoryFaction
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