pub struct FirstBrick {
pub event_id: usize,
pub event_time: f64,
pub killer_name: String,
}Fields§
§event_id: usize§event_time: f64§killer_name: StringTrait Implementations§
Source§impl Clone for FirstBrick
impl Clone for FirstBrick
Source§fn clone(&self) -> FirstBrick
fn clone(&self) -> FirstBrick
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FirstBrick
impl Debug for FirstBrick
Source§impl<'de> Deserialize<'de> for FirstBrick
impl<'de> Deserialize<'de> for FirstBrick
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 FirstBrick
impl PartialEq for FirstBrick
Source§fn eq(&self, other: &FirstBrick) -> bool
fn eq(&self, other: &FirstBrick) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FirstBrick
Auto Trait Implementations§
impl Freeze for FirstBrick
impl RefUnwindSafe for FirstBrick
impl Send for FirstBrick
impl Sync for FirstBrick
impl Unpin for FirstBrick
impl UnsafeUnpin for FirstBrick
impl UnwindSafe for FirstBrick
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