pub struct ObserveEvent {
pub path: String,
pub msg: ObserveMessage,
pub tier: Tier,
pub seq: u64,
}Expand description
ObserveEvent data container.
Fields§
§path: Stringpath field for path.
msg: ObserveMessagemsg field for msg.
tier: Tiertier field for tier.
seq: u64seq field for seq.
Trait Implementations§
Source§impl Clone for ObserveEvent
impl Clone for ObserveEvent
Source§fn clone(&self) -> ObserveEvent
fn clone(&self) -> ObserveEvent
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ObserveEvent
impl !RefUnwindSafe for ObserveEvent
impl !Send for ObserveEvent
impl !Sync for ObserveEvent
impl Unpin for ObserveEvent
impl UnsafeUnpin for ObserveEvent
impl !UnwindSafe for ObserveEvent
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