pub struct ReactiveScopeDependency {
pub identifier: IdentifierId,
pub reactive: bool,
pub path: Vec<DependencyPathEntry>,
pub loc: Option<SourceLocation>,
}Expand description
A dependency of a reactive scope.
Fields§
§identifier: IdentifierId§reactive: bool§path: Vec<DependencyPathEntry>§loc: Option<SourceLocation>Trait Implementations§
Source§impl Clone for ReactiveScopeDependency
impl Clone for ReactiveScopeDependency
Source§fn clone(&self) -> ReactiveScopeDependency
fn clone(&self) -> ReactiveScopeDependency
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 moreAuto Trait Implementations§
impl Freeze for ReactiveScopeDependency
impl RefUnwindSafe for ReactiveScopeDependency
impl Send for ReactiveScopeDependency
impl Sync for ReactiveScopeDependency
impl Unpin for ReactiveScopeDependency
impl UnsafeUnpin for ReactiveScopeDependency
impl UnwindSafe for ReactiveScopeDependency
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