pub struct NestedLiveViewSnapshot {
pub id: NestedLiveViewId,
pub target: String,
pub state: NestedLiveViewState,
pub route_path: String,
}Expand description
Public snapshot of one nested LiveView runtime boundary.
Fields§
§id: NestedLiveViewId§target: String§state: NestedLiveViewState§route_path: StringTrait Implementations§
Source§impl Clone for NestedLiveViewSnapshot
impl Clone for NestedLiveViewSnapshot
Source§fn clone(&self) -> NestedLiveViewSnapshot
fn clone(&self) -> NestedLiveViewSnapshot
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 NestedLiveViewSnapshot
impl Debug for NestedLiveViewSnapshot
Source§impl PartialEq for NestedLiveViewSnapshot
impl PartialEq for NestedLiveViewSnapshot
Source§fn eq(&self, other: &NestedLiveViewSnapshot) -> bool
fn eq(&self, other: &NestedLiveViewSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NestedLiveViewSnapshot
impl StructuralPartialEq for NestedLiveViewSnapshot
Auto Trait Implementations§
impl Freeze for NestedLiveViewSnapshot
impl RefUnwindSafe for NestedLiveViewSnapshot
impl Send for NestedLiveViewSnapshot
impl Sync for NestedLiveViewSnapshot
impl Unpin for NestedLiveViewSnapshot
impl UnsafeUnpin for NestedLiveViewSnapshot
impl UnwindSafe for NestedLiveViewSnapshot
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