pub struct ReleaseStats {
pub is_offensive: bool,
pub additional_fields: HashMap<String, Value>,
}
Fields§
§is_offensive: bool
§additional_fields: HashMap<String, Value>
This additional_fields
field is here because the api says it’s meant to show more
but I can’t find any releases that actually do.
Trait Implementations§
Source§impl Clone for ReleaseStats
impl Clone for ReleaseStats
Source§fn clone(&self) -> ReleaseStats
fn clone(&self) -> ReleaseStats
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 ReleaseStats
impl Debug for ReleaseStats
Source§impl<'de> Deserialize<'de> for ReleaseStats
impl<'de> Deserialize<'de> for ReleaseStats
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 ReleaseStats
impl RefUnwindSafe for ReleaseStats
impl Send for ReleaseStats
impl Sync for ReleaseStats
impl Unpin for ReleaseStats
impl UnwindSafe for ReleaseStats
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