pub struct NoopAliasObserver;Trait Implementations§
Source§impl AliasObserver for NoopAliasObserver
impl AliasObserver for NoopAliasObserver
fn track_all_moves(&self) -> bool
fn on_value_use( &mut self, _graph: &AliasGraph<'_>, _vidx: usize, _span: Span, _in_call: bool, )
fn on_value_assign(&mut self, _graph: &AliasGraph<'_>, _vidx: usize)
fn on_state_change(&mut self, _graph: &AliasGraph<'_>)
Auto Trait Implementations§
impl DynSend for NoopAliasObserver
impl DynSync for NoopAliasObserver
impl Freeze for NoopAliasObserver
impl RefUnwindSafe for NoopAliasObserver
impl Send for NoopAliasObserver
impl Sync for NoopAliasObserver
impl Unpin for NoopAliasObserver
impl UnsafeUnpin for NoopAliasObserver
impl UnwindSafe for NoopAliasObserver
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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