pub struct LogView {
pub node_id: NodeId,
/* private fields */
}Expand description
Handle to a log view. Call LogView::detach to dispose the view
subscription (no RAII — D246 r3).
Fields§
§node_id: NodeIdThe state node backing this view. Subscribe to receive view snapshots.
Implementations§
Auto Trait Implementations§
impl Freeze for LogView
impl RefUnwindSafe for LogView
impl Send for LogView
impl Sync for LogView
impl Unpin for LogView
impl UnsafeUnpin for LogView
impl UnwindSafe for LogView
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