pub struct Result {
pub event: Option<String>,
pub event_type: Option<String>,
pub description: Option<String>,
pub rbi: Option<u8>,
pub away_score: Option<u8>,
pub home_score: Option<u8>,
pub is_out: Option<bool>,
}Fields§
§event: Option<String>§event_type: Option<String>§description: Option<String>§rbi: Option<u8>§away_score: Option<u8>§home_score: Option<u8>§is_out: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Result
impl<'de> Deserialize<'de> for Result
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 Result
impl RefUnwindSafe for Result
impl Send for Result
impl Sync for Result
impl Unpin for Result
impl UnsafeUnpin for Result
impl UnwindSafe for Result
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