pub struct BoutSummary {
pub id: BoutId,
pub fighter_id: FighterId,
pub title: Option<String>,
pub message_count: u64,
pub created_at: String,
pub updated_at: String,
}Expand description
Lightweight summary of a bout for listing purposes.
Fields§
§id: BoutId§fighter_id: FighterId§title: Option<String>§message_count: u64§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for BoutSummary
impl Clone for BoutSummary
Source§fn clone(&self) -> BoutSummary
fn clone(&self) -> BoutSummary
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 BoutSummary
impl Debug for BoutSummary
Source§impl<'de> Deserialize<'de> for BoutSummary
impl<'de> Deserialize<'de> for BoutSummary
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 BoutSummary
impl RefUnwindSafe for BoutSummary
impl Send for BoutSummary
impl Sync for BoutSummary
impl Unpin for BoutSummary
impl UnsafeUnpin for BoutSummary
impl UnwindSafe for BoutSummary
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