pub struct FilterConfigDataReadGuard<'handle, T: Copy> { /* private fields */ }Available on crate feature
filter only.Expand description
フィルタプラグインのデータを読み取るためのガード。
Trait Implementations§
Source§impl<T: Copy> AsRef<T> for FilterConfigDataReadGuard<'_, T>
impl<T: Copy> AsRef<T> for FilterConfigDataReadGuard<'_, T>
Source§impl<T: Copy> Deref for FilterConfigDataReadGuard<'_, T>
impl<T: Copy> Deref for FilterConfigDataReadGuard<'_, T>
Source§impl<T: Copy> Drop for FilterConfigDataReadGuard<'_, T>
impl<T: Copy> Drop for FilterConfigDataReadGuard<'_, T>
impl<T: Send + Sync + Copy> Send for FilterConfigDataReadGuard<'_, T>
impl<T: Send + Sync + Copy> Sync for FilterConfigDataReadGuard<'_, T>
Auto Trait Implementations§
impl<'handle, T> Freeze for FilterConfigDataReadGuard<'handle, T>
impl<'handle, T> RefUnwindSafe for FilterConfigDataReadGuard<'handle, T>where
T: RefUnwindSafe,
impl<'handle, T> Unpin for FilterConfigDataReadGuard<'handle, T>
impl<'handle, T> UnwindSafe for FilterConfigDataReadGuard<'handle, T>where
T: RefUnwindSafe,
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> 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