#[non_exhaustive]pub struct BitsRewards {
pub current: Vec<Reward>,
pub former: Vec<Reward>,
}
๐Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Available on crate features
pubsub
and unsupported
only.Expand description
Rewards
Fields (Non-exhaustive)ยง
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.current: Vec<Reward>
๐Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Rewards to bits conductor
former: Vec<Reward>
๐Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Rewards to former bits conductor
Trait Implementationsยง
Sourceยงimpl Clone for BitsRewards
impl Clone for BitsRewards
Sourceยงfn clone(&self) -> BitsRewards
fn clone(&self) -> BitsRewards
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 BitsRewards
impl Debug for BitsRewards
Sourceยงimpl<'de> Deserialize<'de> for BitsRewards
impl<'de> Deserialize<'de> for BitsRewards
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 BitsRewards
impl PartialEq for BitsRewards
Sourceยงimpl Serialize for BitsRewards
impl Serialize for BitsRewards
impl Eq for BitsRewards
impl StructuralPartialEq for BitsRewards
Auto Trait Implementationsยง
impl Freeze for BitsRewards
impl RefUnwindSafe for BitsRewards
impl Send for BitsRewards
impl Sync for BitsRewards
impl Unpin for BitsRewards
impl UnwindSafe for BitsRewards
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