pub struct BoxAndScore {
pub box_rect: (i32, i32, i32, i32),
pub score: f64,
}Fields§
§box_rect: (i32, i32, i32, i32)§score: f64Trait Implementations§
Source§impl Clone for BoxAndScore
impl Clone for BoxAndScore
Source§fn clone(&self) -> BoxAndScore
fn clone(&self) -> BoxAndScore
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 BoxAndScore
impl Debug for BoxAndScore
Source§impl<'de> Deserialize<'de> for BoxAndScore
impl<'de> Deserialize<'de> for BoxAndScore
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 BoxAndScore
impl RefUnwindSafe for BoxAndScore
impl Send for BoxAndScore
impl Sync for BoxAndScore
impl Unpin for BoxAndScore
impl UnwindSafe for BoxAndScore
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