pub struct ReflectedCell {
pub name: Symbol,
pub value: Expr,
pub private: bool,
pub redacted: bool,
}Expand description
Reflected cell state with privacy redaction applied.
Fields§
§name: SymbolThe cell name.
value: ExprThe cell value, redacted if the cell is private.
private: boolWhether the cell is marked private.
redacted: boolWhether the value was redacted.
Trait Implementations§
Source§impl Clone for ReflectedCell
impl Clone for ReflectedCell
Source§fn clone(&self) -> ReflectedCell
fn clone(&self) -> ReflectedCell
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 ReflectedCell
impl Debug for ReflectedCell
impl Eq for ReflectedCell
Source§impl PartialEq for ReflectedCell
impl PartialEq for ReflectedCell
impl StructuralPartialEq for ReflectedCell
Auto Trait Implementations§
impl Freeze for ReflectedCell
impl RefUnwindSafe for ReflectedCell
impl Send for ReflectedCell
impl Sync for ReflectedCell
impl Unpin for ReflectedCell
impl UnsafeUnpin for ReflectedCell
impl UnwindSafe for ReflectedCell
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