#[non_exhaustive]pub struct EffectReceiptV0 {
pub channel: String,
pub wave: u64,
pub state: ReactiveStateV0,
}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.channel: String§wave: u64§state: ReactiveStateV0Trait Implementations§
Source§impl Clone for EffectReceiptV0
impl Clone for EffectReceiptV0
Source§fn clone(&self) -> EffectReceiptV0
fn clone(&self) -> EffectReceiptV0
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectReceiptV0
impl Debug for EffectReceiptV0
impl Eq for EffectReceiptV0
Source§impl PartialEq for EffectReceiptV0
impl PartialEq for EffectReceiptV0
impl StructuralPartialEq for EffectReceiptV0
Auto Trait Implementations§
impl Freeze for EffectReceiptV0
impl RefUnwindSafe for EffectReceiptV0
impl Send for EffectReceiptV0
impl Sync for EffectReceiptV0
impl Unpin for EffectReceiptV0
impl UnsafeUnpin for EffectReceiptV0
impl UnwindSafe for EffectReceiptV0
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