pub struct Recorder<'a, P: Project> { /* private fields */ }Implementations§
Source§impl<'a, P: Project> Recorder<'a, P>
impl<'a, P: Project> Recorder<'a, P>
pub fn push_delta<D: Delta<Project = P> + 'static>(&mut self, delta: D)
pub fn context<'b>(&'b mut self) -> &'b mut ProjectContext<'a, P>
pub fn project(&self) -> &P
pub fn project_mut(&mut self) -> &mut P
pub fn obj_list<O: Object<Project = P>>(&self) -> &ObjList<O>
pub fn obj_list_mut<O: Object<Project = P>>(&mut self) -> &mut ObjList<O>
Auto Trait Implementations§
impl<'a, P> Freeze for Recorder<'a, P>
impl<'a, P> !RefUnwindSafe for Recorder<'a, P>
impl<'a, P> !Send for Recorder<'a, P>
impl<'a, P> !Sync for Recorder<'a, P>
impl<'a, P> Unpin for Recorder<'a, P>
impl<'a, P> !UnwindSafe for Recorder<'a, P>
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