#[non_exhaustive]pub struct ConductorRewards {
pub bits: BitsRewards,
pub subs: SubsRewards,
}
๐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
Reward given to conductors
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.bits: BitsRewards
๐Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Reward to conductor of bits
subs: SubsRewards
๐Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Reward to conductor of subscriptions
Trait Implementationsยง
Sourceยงimpl Clone for ConductorRewards
impl Clone for ConductorRewards
Sourceยงfn clone(&self) -> ConductorRewards
fn clone(&self) -> ConductorRewards
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 ConductorRewards
impl Debug for ConductorRewards
Sourceยงimpl<'de> Deserialize<'de> for ConductorRewards
impl<'de> Deserialize<'de> for ConductorRewards
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 ConductorRewards
impl PartialEq for ConductorRewards
Sourceยงimpl Serialize for ConductorRewards
impl Serialize for ConductorRewards
impl Eq for ConductorRewards
impl StructuralPartialEq for ConductorRewards
Auto Trait Implementationsยง
impl Freeze for ConductorRewards
impl RefUnwindSafe for ConductorRewards
impl Send for ConductorRewards
impl Sync for ConductorRewards
impl Unpin for ConductorRewards
impl UnwindSafe for ConductorRewards
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