pub struct ModelLifecycle { /* private fields */ }Implementations§
Source§impl ModelLifecycle
impl ModelLifecycle
pub fn new() -> Self
pub fn register_observer<T: 'static>( &mut self, observer: Box<dyn ModelObserver<T>>, )
pub fn register_global_observer<T: 'static>( &mut self, observer: Box<dyn ModelObserver<T>>, )
pub async fn trigger_create_flow<T: 'static>( &self, model: &mut T, ) -> Result<(), EventError>
pub async fn trigger_update_flow<T: 'static>( &self, model: &mut T, original: &T, ) -> Result<(), EventError>
pub async fn trigger_delete_flow<T: 'static>( &self, model: &T, ) -> Result<(), EventError>
pub fn has_observers_for<T: 'static>(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModelLifecycle
impl !RefUnwindSafe for ModelLifecycle
impl Send for ModelLifecycle
impl Sync for ModelLifecycle
impl Unpin for ModelLifecycle
impl !UnwindSafe for ModelLifecycle
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more