Skip to main content

InspectCell

Trait InspectCell 

Source
pub trait InspectCell<'s, T> {
    // Required method
    fn bind(&'s self) -> &'s T;
}

Required Methods§

Source

fn bind(&'s self) -> &'s T

Implementors§

Source§

impl<'s, T> InspectCell<'s, T> for &'s Cell<T>

Source§

impl<'s, T> InspectCell<'s, T> for &'s mut Cell<T>