pub struct HydrationNode {
pub id: String,
pub component_type: ComponentType,
pub props: Properties,
pub state: Properties,
}
Fields§
§id: String
§component_type: ComponentType
§props: Properties
§state: Properties
Trait Implementations§
Source§impl Clone for HydrationNode
impl Clone for HydrationNode
Source§fn clone(&self) -> HydrationNode
fn clone(&self) -> HydrationNode
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 moreSource§impl Debug for HydrationNode
impl Debug for HydrationNode
Source§impl<'de> Deserialize<'de> for HydrationNode
impl<'de> Deserialize<'de> for HydrationNode
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 HydrationNode
impl PartialEq for HydrationNode
Source§impl Serialize for HydrationNode
impl Serialize for HydrationNode
impl StructuralPartialEq for HydrationNode
Auto Trait Implementations§
impl Freeze for HydrationNode
impl RefUnwindSafe for HydrationNode
impl Send for HydrationNode
impl Sync for HydrationNode
impl Unpin for HydrationNode
impl UnwindSafe for HydrationNode
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